2004-08-21 03:56:05 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# -*- sh -*-
|
|
|
|
#
|
|
|
|
# Make the Autotools scripts after checking out the source code from CVS.
|
|
|
|
# This script was taken from the Autotool Book. I wonder if autoreconf
|
|
|
|
# can now be used...
|
|
|
|
#
|
|
|
|
|
|
|
|
set -x
|
2009-09-13 19:44:08 +08:00
|
|
|
aclocal -I m4macros \
|
2004-08-21 03:56:05 +08:00
|
|
|
&& autoheader \
|
|
|
|
&& automake --gnu --add-missing \
|
|
|
|
&& autoconf
|