summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorgrimd34th <ubpd34th@gmail.com>2013-08-30 23:30:26 -0400
committergrimd34th <ubpd34th@gmail.com>2013-08-30 23:30:26 -0400
commitbcbf3ac6098ba984edf6dd7de85f71a998058a4f (patch)
tree3225adf54ffb172b2968d636bbe40ec805f5e976 /autogen.sh
parenta93980e1443972c3284db21e314e6a58bcdacdb0 (diff)
Create autogen.sh
makes configure script and then runs it
Diffstat (limited to 'autogen.sh')
-rw-r--r--autogen.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100644
index 00000000..692483c2
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,13 @@
1#!/bin/sh -e
2
3echo 'Running autoreconf -if...'
4(
5 rm -rf autom4te.cache
6 rm -f aclocal.m4 ltmain.sh
7 autoreconf -if ${AC_FLAGS}
8)
9
10echo 'Running ./configure...'
11(
12 ./configure
13)