summaryrefslogtreecommitdiffstats
path: root/tools/gendist
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gendist')
-rwxr-xr-xtools/gendist10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/gendist b/tools/gendist
index ee0a624..ce7dbe4 100755
--- a/tools/gendist
+++ b/tools/gendist
@@ -4,15 +4,21 @@
# (c) 2000 Martin Mares <mj@ucw.cz>
#
+set -e
[ -f Makefile ] && make distclean
autoconf
+( cd doc ; make docs ; make clean )
VERSION=`sed <sysdep/config.h '/BIRD_VERSION/!d;s/^.*"\(.*\)"$/\1/'`
REL=bird-$VERSION
+DREL=bird-doc-$VERSION
echo Building $REL
rm -rf dist
-mkdir -p dist/$REL
+mkdir -p dist/$REL dist/$DREL/doc
cp -a . dist/$REL
+mv dist/$REL/doc/*.ps dist/$DREL/doc
+rm -f dist/$REL/bird.conf
rm -rf `find dist/$REL -name CVS -o -name tmp` dist/$REL/{dist,misc,rfc}
-cd dist ; tar czvvf /tmp/$REL.tar.gz $REL
+( cd dist ; tar czvvf /tmp/$REL.tar.gz $REL )
+( cd dist ; tar czvvf /tmp/$DREL.tar.gz $DREL )
rm -rf dist
echo Done.