aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: e97bd24511049b1b44fc35ee4dd222c87aec7dbb (plain)
1
2
3
4
5
6
7
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
aclocal && \
	autoheader && \
	autoconf && \
	automake --add-missing --copy && \
	if test x$NOCONF = x ; then ./configure "$@"; fi