2002-06-29 03:01:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2004-11-01 06:40:49 +00:00
|
|
|
aclocal && \
|
|
|
|
autoheader && \
|
|
|
|
autoconf && \
|
|
|
|
automake --add-missing --copy && \
|
2007-07-05 21:52:11 +00:00
|
|
|
if test x$NOCONF = x ; then ./configure "$@"; fi
|