summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)