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

chmod +x tests/*.sh   # fix a bug in CVS

if \
aclocal -I m4 &&
autoheader &&
automake -a &&
autoconf
then
	echo "Next, run ./configure && make && make check"
else
	echo
	echo "An error occured."
	exit 1
fi