summaryrefslogtreecommitdiffstatsabout
path: root/autogen.sh
blob: eda8b4340126558dc1fef5debf7bb403eeaf83a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

rm -rf autom4te-2.53.cache
if [ -z $AUTOCONF ]; then
	AUTOCONF=autoconf-2.53
fi
if [ -z $AUTOHEADER ]; then
	AUTOHEADER=autoheader-2.53
fi
$AUTOHEADER
$AUTOCONF
touch stamp-h.in

for x in providers/*; do
	if [ -e $x/autogen.sh ]; then
		echo Generating Config files in $x
		(cd $x; ./autogen.sh $*)
	fi
done