Create autogen.sh

makes configure script and then runs it
pull/547/head
grimd34th 2013-08-30 23:30:26 -04:00
parent a93980e144
commit bcbf3ac609
1 changed files with 13 additions and 0 deletions

13
autogen.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/sh -e
echo 'Running autoreconf -if...'
(
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh
autoreconf -if ${AC_FLAGS}
)
echo 'Running ./configure...'
(
./configure
)