blob: d19915a1c6a84b6bbe4eb56813174074d9593126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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
aclocal -I m4macros \
&& autoheader \
&& automake --gnu --add-missing \
&& autoconf
|