summaryrefslogtreecommitdiffstats
path: root/tools/gendist
blob: ce7dbe445871ab3696a8a4e0b40906216677bfe2 (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
#!/bin/sh
#
#  Generate BIRD Distribution Archive
#  (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 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/$DREL.tar.gz $DREL )
rm -rf dist
echo Done.