diff options
Diffstat (limited to 'build.sh.in')
-rw-r--r-- | build.sh.in | 12 |
1 files changed, 6 insertions, 6 deletions
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. |