summaryrefslogtreecommitdiff
path: root/Makefile.SH
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-06-07 01:31:56 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-06-07 01:31:56 +0000
commitb27471b988d9b35f10246bdebeafaa7ffe249f97 (patch)
treefab3a0785fade01d56f7a906739ef48444c5aefc /Makefile.SH
parentdb28185901bfe308f53f975f7d61e927a5f806b5 (diff)
downloadperl-b27471b988d9b35f10246bdebeafaa7ffe249f97.tar.gz
Split in two the .PHONY target so that makes without .PHONY
when invoked as "make" won't wander off into the targets "compile translator utilities" and instead stay in the "all" target. Diagnosed by Garry Williams. p4raw-id: //depot/perl@17051
Diffstat (limited to 'Makefile.SH')
-rw-r--r--Makefile.SH4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.SH b/Makefile.SH
index 084e8ba4bc..17f087ed19 100644
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -329,12 +329,14 @@ lintflags = -hbvxac
.c.s:
$(CCCMDSRC) -S $*.c
-.PHONY: all compile translators utilities
+.PHONY: all
all: $(FIRSTMAKEFILE) miniperl$(EXE_EXT) extra.pods $(private) $(public) $(dynamic_ext) $(nonxs_ext) extras.make
@echo " ";
@echo " Everything is up to date. Type '$(MAKE) test' to run test suite."
+.PHONY: compile translators utilities
+
compile: all
echo "testing compilation" > testcompile;
cd utils; $(MAKE) compile;