1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#!/bin/sh
#created by aclocal
rm -rf autom4te.cache
rm -f aclocal.m4
#created by libtoolize
rm -rf m4
mkdir m4
rm -f ltmain.sh
#created by autoconf
rm -f configure
#created by automake
rm -f install-sh missing depcomp Makefile.in config.guess config.sub
rm -f INSTALL COPYING compile
#created by ./configure
rm -rf .deps
rm -f Makefile config.log config.status libtool
if [ "$1" = "clean" ]; then
exit
fi
IPATHS="-I lib"
libtoolize
aclocal $IPATHS
automake --add-missing
autoconf $IPATHS
rm -rf autom4te.cache
echo "Now run ./configure and then make."
exit 0
|