From f12acbd3be97296ac2c9e7e93f6fe426f508997f Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Tue, 9 Nov 1999 00:27:32 +0100 Subject: [PATCH] new_peep_engine target step is no longer necessary. All the subtargets no longer remakes pike if a $(BUILDDIR)/pike exists and is executable. Rev: Makefile:1.19 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bd722b6631..f4a3caa0ea 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.18 1999/10/15 23:38:11 mast Exp $ +# $Id: Makefile,v 1.19 1999/11/08 23:27:32 mast Exp $ # # Meta Makefile # @@ -74,8 +74,8 @@ configure: src/configure builddir compile: configure @builddir="$(BUILDDIR)"; \ metatarget="$(METATARGET)"; \ - test -f "$$builddir"/pike || metatarget="new_peep_engine pike $$metatarget"; \ - cd "$$builddir" && for target in all $$metatarget; do \ + test -x "$$builddir"/pike || metatarget="all $$metatarget"; \ + cd "$$builddir" && for target in $$metatarget; do \ echo Making $$target in "$$builddir"; \ rm -f remake; \ $(MAKE) "MAKE=$(MAKE)" "MAKE_PARALLEL=$(MAKE_PARALLEL)" $$target || { \ -- GitLab