[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / driver / Makefile
1 #-----------------------------------------------------------------------------
2 #
3
4 TOP=..
5 CURRENT_DIR=ghc/driver
6 include $(TOP)/mk/boilerplate.mk
7 #
8 # The driver needs to get at the version
9 include $(TOP)/mk/version.mk
10
11 INSTALLING=0
12
13 DYN_LOADABLE_BITS = \
14         ghc-asm.prl \
15         ghc-iface.prl \
16         ghc-consist.prl \
17         ghc-split.prl
18
19 SCRIPT_PROG = ghc-$(ProjectVersion)
20 SCRIPT_LINK = ghc
21 SCRIPT_OBJS = ghc.prl
22  
23 INTERP=perl
24
25 #
26 # The driver needs to know the options and names for 
27 # all possible ways, so we magically generate the
28 # the make variable names for them here.
29 #
30
31 WAY_NAMES = $(foreach way,$(ALL_WAYS),WAY_$(way)_NAME)
32 WAY_OPTS  = $(foreach way,$(ALL_WAYS),WAY_$(way)_HC_OPTS)
33
34 ifeq "$(INSTALLING)" "1"
35 TOP_PWD := $(prefix)
36 else
37 TOP_PWD := $(FPTOOLS_TOP_ABS)
38 endif
39
40 SCRIPT_SUBST_VARS := \
41   INSTALLING \
42   ProjectName ProjectVersion ProjectVersionInt ProjectPatchLevel \
43   HscMajorVersion HscMinorVersion CcMajorVersion CcMinorVersion \
44   CURRENT_DIR HOSTPLATFORM TARGETPLATFORM \
45   GHC_LIB_DIR GHC_RUNTIME_DIR GHC_UTILS_DIR GHC_INCLUDE_DIR \
46   GHC_OPT_HILEV_ASM GhcWithNativeCodeGen LeadingUnderscore\
47   GHC_UNLIT GHC_HSCPP GHC_HSC GHC_SYSMAN \
48   CP RM CONTEXT_DIFF LibGmp \
49   $(WAY_NAMES) $(WAY_OPTS)
50
51 #
52 # When creating a binary distribution, we prefix the driver script
53 # with a short msg about what variables need to be set to get the
54 # script going. 
55 #
56
57 ifeq "$(BIN_DIST)" "1"
58 SCRIPT_PREFIX_FILES=prefix.txt
59 else
60 SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TMPDIR TOP_PWD
61 endif
62
63 all :: $(DYN_LOADABLE_BITS)
64
65 #
66 # Install setup:
67 #   the driver goes in $(bindir), the perl script helpers
68 #   in $(libdir)
69 #
70 # ToDo: allow different install name for driver?
71 #
72 INSTALL_SCRIPTS += $(SCRIPT_PROG)
73 INSTALL_LIBS    += $(DYN_LOADABLE_BITS)
74
75 #
76 # Before really installing the driver, we have to
77 # reconfigure it such that the paths it refers to,
78 # point to the installed utils.
79 #
80 install ::
81         @$(RM) $(SCRIPT_PROG)
82         @$(MAKE) $(MFLAGS) INSTALLING=1 $(SCRIPT_PROG)
83
84 #
85 # depend setup: other directories need the driver script to compute
86 # their dependencies, so `depend' is simply an alias for `all' here.
87 depend :: all
88
89 #
90 # Clean up
91 #
92 CLEAN_FILES += $(SCRIPT_OBJS) $(SCRIPT_LINK) $(DYN_LOADABLE_BITS) ghc-[0-9].*
93
94 #
95 # Source distribution
96 #
97 SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-passes test_mangler
98
99 include $(TOP)/mk/target.mk
100
101 ghc.prl : $(TOP)/mk/version.mk
102
103 # Hack to re-create the in-situ build tree driver script after 
104 # having installed it.
105 #
106 install ::
107         @$(RM) $(SCRIPT_PROG)
108         @$(MAKE) $(MFLAGS) BIN_DIST=0 INSTALLING=0 $(SCRIPT_PROG)
109
110 #
111 # Another hack (hmm..I can see a pattern developing here :-)
112 # In ghc/driver, we create a symlink from ghc-<whatever-version> to
113 # ghc, but we don't want this included in a source distribution.
114 # We `solve' this by removing `ghc' from the dist tree here.
115 dist ::
116         @echo "Patching dist tree: removing $(SRC_DIST_DIR)/ghc symlink"
117         $(RM) $(SRC_DIST_DIR)/ghc
118
119 #
120 # Option vars for the special ways (that the driver has special pleading for).
121 #
122 # ToDo: rename -DPROFILING to -D__SCC_PROFILING (or somesuch)
123 #              -DTICKY-TICKY TO __TICKY_TICKY__
124 #
125 #  (this is to make the naming consistent with other `standard' hscpp #defines )
126
127 # Way p:
128 WAY_p_NAME=profiling
129 WAY_p_HC_OPTS+=-fscc-profiling -DPROFILING -optc-DPROFILING
130
131 # Way t:
132 WAY_t_NAME+=ticky-ticky profiling
133 WAY_t_HC_OPTS=-fticky-ticky -DTICKY_TICKY -optc-DTICKY_TICKY
134
135 # Way `u':
136 WAY_u_NAME=unregisterized (using portable C only)
137 WAY_u_HC_OPTS=
138
139 # Way `mp': 
140 WAY_mp_NAME=parallel
141 WAY_mp_HC_OPTS+=-fstack-check -fparallel -D__PARALLEL_HASKELL__ -optc-DPAR
142
143 #
144 # Way `mg': 
145 #  Q: is passing -D__GRANSIM__ and -DGRAN to hscpp needed? No, just -D__GRANSIM__
146 WAY_mg_NAME=GranSim
147 WAY_mg_HC_OPTS+=-fstack-check -fconcurrent -fgransim -D__GRANSIM__ -D__CONCURRENT_HASKELL__ -optc-DCONCURRENT -optc-DGRAN
148
149 #
150 # Ways for different garbage collectors
151 #
152 WAY_2s_NAME=2-space GC
153 WAY_2s_HC_OPTS+=-optc-DGC2s
154
155 WAY_1s_NAME=1-space GC
156 WAY_1s_HC_OPTS+=-optc-DGC1s
157
158 WAY_du_NAME=dual-mode GC
159 WAY_du_HC_OPTS+=-optc-DGCdu