Merge pull request #547 from grimd34th/master

Create autogen.sh
This commit is contained in:
irungentoo 2013-08-31 05:26:16 -07:00
commit 3781cd2949

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
)