summaryrefslogtreecommitdiff
path: root/release-scripts/build-docs
blob: 357b4e9847f84447827140bd0775c5c763b51d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

DOCSRCDIR=`dirname $0`/../docs-xml

cd $DOCSRCDIR || exit 1

git clean -d -x -f
autoconf && \
	./configure --with-papersize=letter && \
	make smbdotconf/parameters.all.xml && \
	make release

if [ $? != 0 ]; then
        echo "Docs build failed!"
        exit 1
fi

mkdir ../docs
rsync -Ca --delete --exclude=.git output/ ../docs/
rsync -Ca --exclude=.svn registry ../docs/
rsync -Ca --exclude=.svn archives/ ../docs/

cd ../docs || exit 1
/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test
mv manpages-3 manpages
mv htmldocs/manpages-3 htmldocs/manpages

cd $DOCSRCDIR || exit 1
make clean

exit