-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDIST
More file actions
executable file
·42 lines (34 loc) · 1.06 KB
/
DIST
File metadata and controls
executable file
·42 lines (34 loc) · 1.06 KB
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
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
MODULE=Kahua
while [ $# -gt 0 ]; do
case $1 in
gen) gen=yes; shift ;;
tgz) tgz=yes; shift ;;
test) test=yes; shift ;;
testclean) testclean=yes; shift ;;
*) echo "DIST [gen][tgz][test][testclean]"; exit 0;;
esac
done
if [ "$gen" = "yes" ]; then
autoconf -I `gauche-config --ac`
(cd examples; autoconf -I `gauche-config --ac`)
git log -1 --pretty=%H > REVISION
fi
if [ "$tgz" = "yes" ]; then
if [ -f Makefile ]; then make maintainer-clean; fi
autoconf -I `gauche-config --ac`
(cd examples; autoconf -I `gauche-config --ac`)
git log -1 --pretty=%H > REVISION
./configure
(cd doc; make html)
make distclean
if [ ! -f VERSION ]; then echo "No VERSION; something wrong?"; exit 1; fi
VERSION=`cat VERSION`
rm -f DIST_EXCLUDE_X
cat DIST_EXCLUDE > DIST_EXCLUDE_X
find . -name CVS -o -name .svn -print -prune >> DIST_EXCLUDE_X
rm -rf ../$MODULE-$VERSION
mkdir ../$MODULE-$VERSION
tar cvfX - DIST_EXCLUDE_X . | (cd ../$MODULE-$VERSION; tar xf -)
(cd ..; tar cvf - $MODULE-$VERSION | gzip -9 > $MODULE-$VERSION.tgz)
fi