summaryrefslogtreecommitdiff
path: root/build.template
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-03-11 19:25:21 +0000
committerRoland McGrath <roland@redhat.com>1993-03-11 19:25:21 +0000
commit3e9cf581d118778091d9e4fa5a668aa10a254808 (patch)
tree30d963ab95472c4c78c112b215cbf0f9b17a450e /build.template
parente7b737dc5ecee6f6b3ad7d82fa5244ea814fddfc (diff)
downloadgunmake-3e9cf581d118778091d9e4fa5a668aa10a254808.tar.gz
entered into RCS
Diffstat (limited to 'build.template')
-rw-r--r--build.template3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.template b/build.template
index 53cea69..6bae5b2 100644
--- a/build.template
+++ b/build.template
@@ -29,6 +29,7 @@ defines='@DEFS@ -DLIBDIR="${libdir}" -DINCLUDEDIR="${includedir}"'
ALLOCA='@ALLOCA@'
LOADLIBES='@LIBS@'
extras='@LIBOBJS@'
+REMOTE='@REMOTE@'
# Common prefix for machine-independent installed files.
prefix=/usr/local
@@ -43,7 +44,7 @@ includedir=${prefix}/include
set -e
# These are all the objects we need to link together.
-objs="%objs% ${extras} ${ALLOCA}"
+objs="%objs% remote-${REMOTE}.o ${extras} ${ALLOCA}"
# Compile the source files into those objects.
for file in `echo ${objs} | sed 's/\.o/.c/g'`; do