blob: 829fd3a10385c0aaafbe85878d4c6ce9dd29ab62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
if [ -z $ACLOCAL ]; then
ACLOCAL=aclocal
fi
if [ -z $AUTOCONF ]; then
AUTOCONF=autoconf
fi
if [ -z $AUTOHEADER ]; then
AUTOHEADER=autoheader
fi
rm -rf autom4te.cache
$ACLOCAL -I m4
$AUTOHEADER
$AUTOCONF
touch stamp-h.in
|