From 887cb4ffe7b9936d3708f9a9f84ad4a346f9eb75 Mon Sep 17 00:00:00 2001 From: rrt Date: Fri, 13 Jul 2001 13:55:19 +0000 Subject: [PATCH] [project @ 2001-07-13 13:55:19 by rrt] Don't build RTS for ILX --- ghc/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ghc/Makefile b/ghc/Makefile index 1c8ec96..2017327 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.17 2001/04/27 03:11:25 qrczak Exp $ +# $Id: Makefile,v 1.18 2001/07/13 13:55:19 rrt Exp $ # TOP=. @@ -23,7 +23,12 @@ include $(TOP)/mk/boilerplate.mk ifeq "$(BootingFromHc)" "YES" SUBDIRS = includes utils rts docs lib compiler driver else +ifneq "$(ILXized)" "YES" SUBDIRS = includes utils driver docs compiler rts lib +else +# No RTS for ILX +SUBDIRS = includes utils driver docs compiler lib +endif endif # Easier to copy -- 1.7.10.4