From 437c00f21c5b6314bfcf368fe46d3163ce9a230b Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 24 Jul 1991 02:25:00 +0000 Subject: [PATCH] Add .PHONY targets to make targets like "scheme" work right. --- v7/src/microcode/unxutl/makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/v7/src/microcode/unxutl/makefile b/v7/src/microcode/unxutl/makefile index 734b3e0c9..34b19f00e 100644 --- a/v7/src/microcode/unxutl/makefile +++ b/v7/src/microcode/unxutl/makefile @@ -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. -- 2.25.1