Simplify autogen.sh

This commit is contained in:
Kim Woelders 2018-08-12 15:39:15 +02:00
parent 5ec39a9672
commit 8827dc93e2
1 changed files with 5 additions and 8 deletions

View File

@ -1,13 +1,10 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
rm -rf */install-sh */missing
rm -rf autom4te.cache aclocal.m4
echo " aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS
echo " automake --add-missing"
automake --add-missing
echo " autoconf"
autoconf
autoreconf -vif
./configure "$@"
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"
fi