summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 0d433612886ef9dafe1042278ebe797cafe756f8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

rm -rf autom4te.cache aclocal.m4

autoreconf -vif

if [ -z "$NOCONFIGURE" ]; then
	./configure "$@"
fi