summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 245fe7103c85dcb136925429908421b0a167e314 (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"  -a "$1" != "-n" ]; then
	./configure "$@"
fi