blob: a871f252c42face4e7fee2b9c2fdadf5d6b4e3d9 (
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 \
&& autoheader \
&& automake --gnu --add-missing \
&& autoconf
|