From: Guillermo J. Rozas Date: Tue, 12 Jun 1990 17:32:29 +0000 (+0000) Subject: Add a .DEFAULT entry that re-invokes make on the target using X-Git-Tag: 20090517-FFI~11396 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=220fc90f6768aa940cddb13377ca27778b04f73f;p=mit-scheme.git Add a .DEFAULT entry that re-invokes make on the target using xmakefile. --- diff --git a/v7/src/microcode/unxutl/makefile b/v7/src/microcode/unxutl/makefile index 480c9b40e..d61d29f43 100644 --- a/v7/src/microcode/unxutl/makefile +++ b/v7/src/microcode/unxutl/makefile @@ -1,7 +1,7 @@ # # Makefile for MIT CScheme microcode. # -# $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/unxutl/Attic/makefile,v 1.8 1990/01/16 19:58:23 cph Exp $ +# $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/unxutl/Attic/makefile,v 1.9 1990/06/12 17:32:29 jinx Exp $ # CPP = cc -E MAKE = make # BSD doesn't have it as a default. @@ -70,3 +70,6 @@ locked: getpagesize.h : pagesize.h rm -f getpagesize.h cp pagesize.h getpagesize.h + +.DEFAULT : xmakefile + $(MAKE) $(MAKEOVERRIDES) -f xmakefile ${MFLAGS} $@