root/branches/lighttpd-1.4.x/autogen.sh

Revision 97, 0.5 kB (checked in by jan, 4 years ago)

fixed message to print configure + make

  • Property svn:executable set to *
Line 
1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
5LIBTOOLIZE_FLAGS="--copy --force"
6ACLOCAL=${ACLOCAL:-aclocal}
7AUTOHEADER=${AUTOHEADER:-autoheader}
8AUTOMAKE=${AUTOMAKE:-automake}
9AUTOMAKE_FLAGS="--add-missing --copy"
10AUTOCONF=${AUTOCONF:-autoconf}
11
12ARGV0=$0
13
14set -e
15
16
17run() {
18        echo "$ARGV0: running \`$@'"
19        $@
20}
21
22run $LIBTOOLIZE $LIBTOOLIZE_FLAGS
23run $ACLOCAL $ACLOCAL_FLAGS
24run $AUTOHEADER
25run $AUTOMAKE $AUTOMAKE_FLAGS
26run $AUTOCONF
27echo "Now type './configure ...' and 'make' to compile."
Note: See TracBrowser for help on using the browser.