1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
test -r ChangeLog || touch touch -t 198001010000 ChangeLog
MYDIR=`dirname $0`
if test -r batch/make/version; then
echo "Generating version..."
echo "m4_define(AUTOMATIC_VERSION,["`sh batch/make/version $MYDIR`"])" > version || exit 1
fi
echo "Running aclocal..."
aclocal || { rm aclocal.m4; exit 1; }
echo "Running autoheader..."
rm -f config.h.in
autoheader || { rm config.h.in; exit 1; }
echo "Running autoconf..."
autoconf || { rm configure; exit 1; }
echo "Running automake..."
automake -a || exit 1
echo "Flagging scripts as executable..."
chmod 755 $MYDIR/*.sh || exit 1
echo "Done! You may now run configure and start building."
|