Regenerated

This commit is contained in:
Roland McGrath 1995-03-08 18:18:03 +00:00
parent 3a0f9ce0cb
commit 5e69859273
2 changed files with 10 additions and 11 deletions

View file

@ -265,11 +265,10 @@ stamp-config: config.status $(srcdir)/config.h.in
$(SHELL) config.status $(SHELL) config.status
touch stamp-config touch stamp-config
# These rules cause too much trouble. #configure: configure.in aclocal.m4
#configure: configure.in # cd $(srcdir) && autoconf $(ACFLAGS)
# autoconf $(ACFLAGS) #config.h.in: configure.in aclocal.m4
#config.h.in: configure.in # cd $(srcdir) && autoheader $(ACFLAGS)
# autoheader $(ACFLAGS)
# This tells versions [3.59,3.63) of GNU make not to export all variables. # This tells versions [3.59,3.63) of GNU make not to export all variables.
.NOEXPORT: .NOEXPORT:

View file

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# Shell script to build GNU Make in the absence of any `make' program. # Shell script to build GNU Make in the absence of any `make' program.
# @configure_input@
# Copyright (C) 1993, 1994 Free Software Foundation, Inc. # Copyright (C) 1993, 1994 Free Software Foundation, Inc.
# This file is part of GNU Make. # This file is part of GNU Make.
@ -33,10 +33,10 @@ extras='@LIBOBJS@'
REMOTE='@REMOTE@' REMOTE='@REMOTE@'
# Common prefix for machine-independent installed files. # Common prefix for machine-independent installed files.
prefix=@prefix@ prefix='@prefix@'
# Common prefix for machine-dependent installed files. # Common prefix for machine-dependent installed files.
exec_prefix=@exec_prefix@ exec_prefix='@exec_prefix@'
# Directory to find libraries in for `-lLIB'. # Directory to find libraries in for `-lXXX'.
libdir=${exec_prefix}/lib libdir=${exec_prefix}/lib
# Directory to search by default for included makefiles. # Directory to search by default for included makefiles.
includedir=${prefix}/include 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. # Compile the source files into those objects.
for file in `echo ${objs} | sed 's/\.o/.c/g'`; do for file in `echo ${objs} | sed 's/\.o/.c/g'`; do
echo compiling ${file}... echo compiling ${file}...
$CC $CPPFLAGS $CFLAGS $defines -c \ $CC $defines $CPPFLAGS $CFLAGS \
-I. -I${srcdir} -I${srcdir}/glob ${srcdir}/$file -c -I. -I${srcdir} -I${srcdir}/glob ${srcdir}/$file
done done
# The object files were actually all put in the current directory. # The object files were actually all put in the current directory.