blob: 845f2763a6e5adfe6681005d9b68fb2d875406f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/bin/sh
#-----------------------------------------------------------------------
# File: autogen.sh
# Description:
# + wrapper for m4 black-magic
#-----------------------------------------------------------------------
MY_ALDIRS="."
MY_AHDIRS="."
MY_AMDIRS="."
MY_ACDIRS="."
test -z "$ACLOCAL" && ACLOCAL=aclocal
test -z "$AUTOHEADER" && AUTOHEADER=autoheader
test -z "$AUTOMAKE" && AUTOMAKE=automake
test -z "$AUTOCONF" && AUTOCONF=autoconf
if test -n "$MY_ALDIRS"; then
for d in $MY_ALDIRS ; do
echo "(cd $d ; $ACLOCAL)"
(cd $d ; $ACLOCAL)
done
fi
if test -n "$MY_AHDIRS"; then
for d in $MY_AHDIRS ; do
echo "(cd $d ; $AUTOHEADER)"
(cd $d ; $AUTOHEADER)
done
fi
if test -n "$MY_AMDIRS"; then
for d in $MY_AMDIRS ; do
echo "(cd $d ; $AUTOMAKE -a)"
(cd $d ; $AUTOMAKE -a)
done
fi
if test -n "$MY_ACDIRS"; then
for d in $MY_ACDIRS ; do
echo "(cd $d ; $AUTOCONF)"
(cd $d ; $AUTOCONF)
done
fi
#echo "(./configure)"
#./configure $*
|