summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 24d48ea373786315a42d5ccdd0dbe7a5e2643fe3 (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