Add .PHONY targets to make targets like "scheme" work right.
authorChris Hanson <org/chris-hanson/cph>
Wed, 24 Jul 1991 02:25:00 +0000 (02:25 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 24 Jul 1991 02:25:00 +0000 (02:25 +0000)
v7/src/microcode/unxutl/makefile

index 734b3e0c98d96f46d1be1939076df04613c68e77..34b19f00eb36d458da967973e179a4f0b3634f50 100644 (file)
@@ -1,34 +1,42 @@
 #
 # Makefile for MIT CScheme microcode.
 #
-# $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/unxutl/Attic/makefile,v 1.11 1990/12/11 23:36:17 cph Rel $
+# $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/unxutl/Attic/makefile,v 1.12 1991/07/24 02:25:00 cph Exp $
 #
 CPP = cc -E
 MAKE = make  # BSD doesn't have it as a default.
 
 all: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} all
+.PHONY: all
 
 scheme: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} scheme
+.PHONY: scheme
 
 xscheme: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} xscheme
+.PHONY: xscheme
 
 bchscheme: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} bchscheme
+.PHONY: bchscheme
 
 Psbtobin: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} Psbtobin
+.PHONY: Psbtobin
 
 Bintopsb: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} Bintopsb
+.PHONY: Bintopsb
 
 Ppband: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} Ppband
+.PHONY: Ppband
 
 install: xmakefile
        $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} install
+.PHONY: install
 
 # If you have a problem with cc -E here, changing
 # the definition of CPP above may fix it.