From: simonm Date: Tue, 7 Jan 1997 13:17:25 +0000 (+0000) Subject: [project @ 1997-01-07 13:17:25 by simonm] X-Git-Tag: Approximately_1000_patches_recorded~854 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ef49002dbccb12ead0398658798067c94488f172;p=ghc-hetmet.git [project @ 1997-01-07 13:17:25 by simonm] use ghc/mk/ways.mk. --- diff --git a/ghc/runtime/Makefile b/ghc/runtime/Makefile index 3399ebc..ff994b3 100644 --- a/ghc/runtime/Makefile +++ b/ghc/runtime/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.2 1996/11/21 16:48:17 simonm Exp $ +# $Id: Makefile,v 1.3 1997/01/07 13:17:25 simonm Exp $ # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -89,26 +89,6 @@ install :: main/TopClosure.o #----------------------------------------------------------------------------- # libHSrts.a, in several different 'ways' -all :: - @for i in $(WAY_SUFFIXES); do \ - echo; \ - echo =========== Making runtime system for way $$i; \ - echo; \ - $(MAKE) -f Makefile.libHSrts suffix=$$i; \ - done - -install :: - @for i in $(WAY_SUFFIXES); do \ - $(MAKE) -f Makefile.libHSrts suffix=$$i install; \ - done - -clean :: - @$(MAKE) -f Makefile.libHSrts clean - @for i in $(WAY_SUFFIXES); do \ - $(MAKE) -f Makefile.libHSrts suffix=$$i cleanobj; \ - done - -# Dependencies are done by Makefile.libHSrts - -depend :: - @$(MAKE) -f Makefile.libHSrts depend +MAKEFILE = Makefile.libHSrts +DESCR = runtime system +include $(TOP)/ghc/mk/ways.mk