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