From 5e69859273886b13a6c162e6f46326938dd2f9f7 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 8 Mar 1995 18:18:03 +0000 Subject: Regenerated --- build.sh.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'build.sh.in') diff --git a/build.sh.in b/build.sh.in index b789c62..1667f0e 100644 --- a/build.sh.in +++ b/build.sh.in @@ -1,6 +1,6 @@ #!/bin/sh - # Shell script to build GNU Make in the absence of any `make' program. +# @configure_input@ # Copyright (C) 1993, 1994 Free Software Foundation, Inc. # This file is part of GNU Make. @@ -33,10 +33,10 @@ extras='@LIBOBJS@' REMOTE='@REMOTE@' # Common prefix for machine-independent installed files. -prefix=@prefix@ +prefix='@prefix@' # Common prefix for machine-dependent installed files. -exec_prefix=@exec_prefix@ -# Directory to find libraries in for `-lLIB'. +exec_prefix='@exec_prefix@' +# Directory to find libraries in for `-lXXX'. libdir=${exec_prefix}/lib # Directory to search by default for included makefiles. includedir=${prefix}/include @@ -50,8 +50,8 @@ objs="commands.o job.o dir.o file.o misc.o main.o read.o remake.o rule.o implici # Compile the source files into those objects. for file in `echo ${objs} | sed 's/\.o/.c/g'`; do echo compiling ${file}... - $CC $CPPFLAGS $CFLAGS $defines -c \ - -I. -I${srcdir} -I${srcdir}/glob ${srcdir}/$file + $CC $defines $CPPFLAGS $CFLAGS \ + -c -I. -I${srcdir} -I${srcdir}/glob ${srcdir}/$file done # The object files were actually all put in the current directory. -- cgit v1.2.3