[project @ 2000-06-25 17:18:15 by panne]
[ghc-hetmet.git] / ghc / Makefile
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.11 2000/06/25 17:18:15 panne Exp $
3 #
4
5 TOP=.
6 include $(TOP)/mk/boilerplate.mk
7
8 #
9 # subdir dependencies:
10 #       everything needs utils
11 #       includes/ needs driver (to easily c.pile mkNativeGen.c)
12 #       make depend except in {utils,driver} needs includes     
13 #       RTS and compiler need includes
14 #
15
16 #
17 # Order is important! It's e.g. necessary to descend into include/
18 # before the rest to have a config.h, etc.
19 #
20 # If we're booting from .hc files, swap the order
21 # we descend into compiler/ and lib/
22 #
23 ifeq "$(GhcWithHscBuiltViaC)" "NO"
24 SUBDIRS = includes utils driver rts docs compiler lib
25 else
26 SUBDIRS = includes utils driver rts docs lib compiler
27 endif
28
29 # Easier to copy
30 ifeq "$(BIN_DIST)" "1"
31 SUBDIRS := $(filter-out docs,$(SUBDIRS))
32 endif
33
34 ifeq ($(IncludeTestDirsInBuild),YES)
35 SUBDIRS += tests
36 endif
37
38 SRC_DIST_FILES += configure
39
40 include $(TOP)/mk/target.mk