Skip to content
Snippets Groups Projects
Commit f12acbd3 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

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
parent 1c5808b4
No related branches found
No related tags found
No related merge requests found
# #
# $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 # Meta Makefile
# #
...@@ -74,8 +74,8 @@ configure: src/configure builddir ...@@ -74,8 +74,8 @@ configure: src/configure builddir
compile: configure compile: configure
@builddir="$(BUILDDIR)"; \ @builddir="$(BUILDDIR)"; \
metatarget="$(METATARGET)"; \ metatarget="$(METATARGET)"; \
test -f "$$builddir"/pike || metatarget="new_peep_engine pike $$metatarget"; \ test -x "$$builddir"/pike || metatarget="all $$metatarget"; \
cd "$$builddir" && for target in all $$metatarget; do \ cd "$$builddir" && for target in $$metatarget; do \
echo Making $$target in "$$builddir"; \ echo Making $$target in "$$builddir"; \
rm -f remake; \ rm -f remake; \
$(MAKE) "MAKE=$(MAKE)" "MAKE_PARALLEL=$(MAKE_PARALLEL)" $$target || { \ $(MAKE) "MAKE=$(MAKE)" "MAKE_PARALLEL=$(MAKE_PARALLEL)" $$target || { \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment