1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/bin/sh
#
# Running this should create the following files:
#
# touch - ChangeLog
# autoheader - config.h.in
# aclocal - aclocal.m4
# automake - COPYING INSTALL Makefile.in config.guess config.sub install-sh
# libtool ltconfig ltmain.sh missing mkinstalldirs stamp-h.in
# autoconf - configure
# (autoreconf does pretty much everything nowadays)
rm -rf autom4te.cache
touch ChangeLog
autoreconf --verbose --install --force
#autoheader
#aclocal
#libtoolize --copy --force
#automake --copy --add-missing
#autoconf
|