aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 96fb4e9352b70d027372892b9f35c99c6f36e3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

rm -f config.cache
mkdir -p build

echo "Looking in current directory for macros."
aclocal -I .
echo "Adding missing files."
automake --add-missing --force-missing
echo "Autoconf, Autoheader, Automake"
autoconf
autoheader
automake --foreign --add-missing --force-missing --copy
exit $?