summaryrefslogtreecommitdiffstatsabout
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..eda8b43
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,19 @@
1#!/bin/sh
2
3rm -rf autom4te-2.53.cache
4if [ -z $AUTOCONF ]; then
5 AUTOCONF=autoconf-2.53
6fi
7if [ -z $AUTOHEADER ]; then
8 AUTOHEADER=autoheader-2.53
9fi
10$AUTOHEADER
11$AUTOCONF
12touch stamp-h.in
13
14for x in providers/*; do
15 if [ -e $x/autogen.sh ]; then
16 echo Generating Config files in $x
17 (cd $x; ./autogen.sh $*)
18 fi
19done