2002-04-03 00:27:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# bootstrap the build when checking out from CVS
|
|
|
|
|
2002-04-04 23:11:31 +00:00
|
|
|
if [ "$1" = "clean" ]; then
|
2002-08-14 04:36:14 +00:00
|
|
|
# quick hack to remove extra generated files that make distclean
|
|
|
|
# doesn't remove
|
|
|
|
find . -name Makefile.in -print0 | xargs -r0 rm -f
|
|
|
|
rm -f aclocal.m4 install-sh missing mkinstalldirs \
|
|
|
|
stamp-* tags configure config.* \
|
|
|
|
compile depcomp ltmain.sh
|
|
|
|
rm -rf autom4te.cache libltdl
|
|
|
|
find . -name '*~' -print0 | xargs -r0 rm -f
|
|
|
|
find . -name '*.rej' -print0 | xargs -r0 rm -f
|
|
|
|
find . -name '*.orig' -print0 | xargs -r0 rm -f
|
|
|
|
exit
|
2002-04-04 13:44:56 +00:00
|
|
|
fi
|
2002-08-14 04:36:14 +00:00
|
|
|
|
|
|
|
# no version checking is done here, it's too hard and not worth the effort
|
|
|
|
# when one can just read the README
|
|
|
|
aclocal && \
|
|
|
|
autoheader && \
|
|
|
|
libtoolize --copy --ltdl --automake && \
|
|
|
|
automake --foreign --add-missing --copy && \
|
|
|
|
autoconf
|