make/build.template

71 lines
2.1 KiB
Text
Raw Normal View History

1993-01-12 19:30:31 +00:00
#!/bin/sh
# Shell script to build GNU Make in the absence of any `make' program.
# @configure_input@
1993-01-12 19:30:31 +00:00
1997-08-27 20:30:54 +00:00
# Copyright (C) 1993, 1994, 1997 Free Software Foundation, Inc.
1993-01-12 19:30:31 +00:00
# This file is part of GNU Make.
1997-08-18 18:11:04 +00:00
#
1993-01-12 19:30:31 +00:00
# GNU Make is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# GNU Make is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
1997-08-18 18:11:04 +00:00
#
1993-01-12 19:30:31 +00:00
# You should have received a copy of the GNU General Public License
# along with GNU Make; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
1993-01-12 19:30:31 +00:00
# See Makefile.in for comments describing these variables.
srcdir='@srcdir@'
CC='@CC@'
1993-01-21 23:50:43 +00:00
CFLAGS='@CFLAGS@'
CPPFLAGS='@CPPFLAGS@'
1993-01-21 23:50:43 +00:00
LDFLAGS='@LDFLAGS@'
1993-01-12 23:00:41 +00:00
defines='@DEFS@ -DLIBDIR="${libdir}" -DINCLUDEDIR="${includedir}"'
1993-01-12 19:30:31 +00:00
ALLOCA='@ALLOCA@'
LOADLIBES='@LIBS@'
extras='@LIBOBJS@'
1993-03-11 19:25:21 +00:00
REMOTE='@REMOTE@'
1993-01-12 19:30:31 +00:00
# Common prefix for machine-independent installed files.
prefix='@prefix@'
1993-01-12 19:30:31 +00:00
# Common prefix for machine-dependent installed files.
exec_prefix='@exec_prefix@'
1993-01-12 19:30:31 +00:00
# Directory to find libraries in for `-lXXX'.
libdir=${exec_prefix}/lib
# Directory to search by default for included makefiles.
includedir=${prefix}/include
1993-01-12 23:00:41 +00:00
# Exit as soon as any command fails.
set -e
1993-01-13 21:05:03 +00:00
# These are all the objects we need to link together.
1993-03-11 19:25:21 +00:00
objs="%objs% remote-${REMOTE}.o ${extras} ${ALLOCA}"
1993-01-12 23:00:41 +00:00
1993-01-13 21:05:03 +00:00
# Compile the source files into those objects.
1993-01-12 19:30:31 +00:00
for file in `echo ${objs} | sed 's/\.o/.c/g'`; do
1993-01-12 23:00:41 +00:00
echo compiling ${file}...
$CC $defines $CPPFLAGS $CFLAGS \
-c -I. -I${srcdir} ${srcdir}/$file
1993-01-12 19:30:31 +00:00
done
1993-01-13 21:05:03 +00:00
# The object files were actually all put in the current directory.
# Remove the source directory names from the list.
srcobjs="$objs"
objs=
for obj in $srcobjs; do
objs="$objs `basename $obj`"
done
# Link all the objects together.
echo linking make...
1993-01-12 19:30:31 +00:00
$CC $LDFLAGS $objs $LOADLIBES -o make.new
1993-01-13 21:05:03 +00:00
echo done
1993-01-12 19:30:31 +00:00
mv -f make.new make