summaryrefslogtreecommitdiff
path: root/ghc/Makefile
diff options
context:
space:
mode:
authorsimonmar <unknown>2004-11-11 09:36:55 +0000
committersimonmar <unknown>2004-11-11 09:36:55 +0000
commit03742521b5bc684add386d6f52ffda97063ba290 (patch)
tree2cf9d7a82565113b65df8b3b7ffcfe2fb9dd9316 /ghc/Makefile
parent91e3de7e2b39b572f125db5f120ed1bf5c42c21a (diff)
downloadhaskell-03742521b5bc684add386d6f52ffda97063ba290.tar.gz
[project @ 2004-11-11 09:36:55 by simonmar]
include lib/ in the build
Diffstat (limited to 'ghc/Makefile')
-rw-r--r--ghc/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/ghc/Makefile b/ghc/Makefile
index 3524757263..8c83dcd479 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