mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 07:12:01 +00:00
2012da9a05
to remove some warnings from the new automake.
25 lines
808 B
Bash
Executable file
25 lines
808 B
Bash
Executable file
#!/bin/sh
|
|
# bootstrap the build when checking out from CVS
|
|
|
|
if [ "$1" = "clean" ]; then
|
|
# quick hack to remove extra generated files that make distclean
|
|
# doesn't remove
|
|
find . -name Makefile.in -print0 | xargs -0 rm -f
|
|
rm -f aclocal.m4 install-sh missing mkinstalldirs \
|
|
stamp-* tags configure config.* \
|
|
compile depcomp ltmain.sh libtool
|
|
rm -rf autom4te.cache libltdl
|
|
rm -rf quake2-*.tar.gz
|
|
find . -name '*~' -print0 | xargs -0 rm -f
|
|
find . -name '*.rej' -print0 | xargs -0 rm -f
|
|
find . -name '*.orig' -print0 | xargs -0 rm -f
|
|
exit
|
|
fi
|
|
|
|
# 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 --automake && \
|
|
automake --foreign --add-missing --copy && \
|
|
autoconf
|