From 03742521b5bc684add386d6f52ffda97063ba290 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 11 Nov 2004 09:36:55 +0000 Subject: [PATCH] [project @ 2004-11-11 09:36:55 by simonmar] include lib/ in the build --- ghc/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ghc/Makefile b/ghc/Makefile index 3524757..8c83dcd 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.25 2004/02/20 21:21:27 panne Exp $ +# $Id: Makefile,v 1.26 2004/11/11 09:36:55 simonmar Exp $ # TOP=. @@ -8,6 +8,7 @@ include $(TOP)/mk/boilerplate.mk # # subdir dependencies: # everything needs utils +# utils needs lib # includes/ needs driver (to easily c.pile mkNativeGen.c) # make depend except in {utils,driver} needs includes # RTS and compiler need includes @@ -21,13 +22,13 @@ include $(TOP)/mk/boilerplate.mk # we descend into subdirs - to boot utils must be before driver. # ifeq "$(BootingFromHc)" "YES" -SUBDIRS = includes rts docs compiler utils driver +SUBDIRS = includes rts docs compiler lib utils driver else ifneq "$(ILXized)" "YES" -SUBDIRS = includes utils driver docs compiler rts +SUBDIRS = includes lib utils driver docs compiler rts else # No RTS for ILX -SUBDIRS = includes utils driver docs compiler +SUBDIRS = includes lib utils driver docs compiler endif endif -- 1.7.10.4