From 099b4d56433c3866ddf1f69a20e26729809f208f Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 12 Jan 1993 23:00:41 +0000 Subject: Formerly build.template.~2~ --- build.template | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'build.template') diff --git a/build.template b/build.template index 3e9f51e..15d83f1 100644 --- a/build.template +++ b/build.template @@ -24,13 +24,11 @@ srcdir='@srcdir@' CC='@CC@' CFLAGS="${CFLAGS--g}" -defines='@DEFS@ -DLIBDIR=\"${libdir}\" -DINCLUDEDIR=\"${includedir}\"' +defines='@DEFS@ -DLIBDIR="${libdir}" -DINCLUDEDIR="${includedir}"' ALLOCA='@ALLOCA@' LOADLIBES='@LIBS@' extras='@LIBOBJS@' -objs="%objs% ${extras} ${ALLOCA}" - # Common prefix for machine-independent installed files. prefix=/usr/local # Common prefix for machine-dependent installed files. @@ -40,9 +38,23 @@ libdir=${exec_prefix}/lib # Directory to search by default for included makefiles. includedir=${prefix}/include +# Exit as soon as any command fails. +set -e + +globobjs="%globobjs%" + +# To make life simpler, just copy the glob sources into this directory. +for file in `echo ${globobjs} | sed 's/\.o/.c/g'`; do + ln ${srcdir}/glob/$file $file || cp ${srcdir}/glob/$file $file +done + +objs="%objs% ${globobjs} ${extras} ${ALLOCA}" + for file in `echo ${objs} | sed 's/\.o/.c/g'`; do + echo compiling ${file}... $CC $CFLAGS $defines -c -I. -I${srcdir} -I${srcdir}/glob ${srcdir}/$file done +echo linking make $CC $LDFLAGS $objs $LOADLIBES -o make.new mv -f make.new make -- cgit v1.2.3