From 3f3059c86c59d293b14bd9d2fa9458c89e08b64a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Wed, 24 Nov 1999 20:01:18 +0100
Subject: [PATCH] Now rebuilds pike again if $(POBJS) aren't up to date.

Rev: src/Makefile.in:1.169
---
 src/Makefile.in | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/Makefile.in b/src/Makefile.in
index ab6a05d63b..5f95ddc75a 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,5 +1,5 @@
 #
-# $Id: Makefile.in,v 1.168 1999/11/24 06:11:32 mast Exp $
+# $Id: Makefile.in,v 1.169 1999/11/24 19:01:18 grubba Exp $
 #
 
 # This line is needed on some machines.
@@ -204,7 +204,9 @@ tpike:
 # up-to-date first. So if the $(POBJ)s, which depend on tpike, trigs
 # the recursive make of tpike-real above, that one will never start to
 # make the $(OBJ)s concurrently with this one.
-pike: $(OBJ) modules/linker_options
+# The force is needed, since otherwise pike won't be rebuilt if
+# only $(POBJ) needs to be rebuilt.
+pike: $(OBJ) modules/linker_options force
 	$(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) $(POBJ)
 	-@if [ -f pike.old ] ; then rm -f pike.old || : ; else : ; fi
 	-@if [ -f pike.old.exe ] ; then rm -f pike.old.exe || : ; else : ; fi
-- 
GitLab