2008-05-11 18:39:17 +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
|
2008-06-20 00:08:12 +08:00
|
|
|
aclocal \
|
2008-05-11 18:39:17 +08:00
|
|
|
&& autoheader \
|
|
|
|
&& automake --gnu --add-missing \
|
|
|
|
&& autoconf
|