File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / spawn-fcgi / autogen.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 15:24:39 2013 UTC (10 years, 8 months ago) by misho
Branches: spawn-fcgi, MAIN
CVS tags: v1_6_3, HEAD
1.6.3

    1: #!/bin/sh
    2: # Run this to generate all the initial makefiles, etc.
    3: 
    4: ACLOCAL=${ACLOCAL:-aclocal}
    5: AUTOHEADER=${AUTOHEADER:-autoheader}
    6: AUTOMAKE=${AUTOMAKE:-automake}
    7: AUTOMAKE_FLAGS="--add-missing --copy"
    8: AUTOCONF=${AUTOCONF:-autoconf}
    9: 
   10: ARGV0=$0
   11: 
   12: set -e
   13: 
   14: 
   15: run() {
   16: 	echo "$ARGV0: running \`$@'"
   17: 	$@
   18: }
   19: 
   20: run $ACLOCAL $ACLOCAL_FLAGS
   21: run $AUTOHEADER
   22: run $AUTOMAKE $AUTOMAKE_FLAGS
   23: run $AUTOCONF
   24: echo "Now type './configure ...' and 'make' to compile."

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>