Remove some unnecessary workarounds
[ghc-hetmet.git] / ghc / ghc.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # ToDo
14 ghc_USES_CABAL = YES
15 ghc_PACKAGE = ghc-bin
16
17 ghc_stage1_HC_OPTS = $(GhcStage1HcOpts)
18 ghc_stage2_HC_OPTS = $(GhcStage2HcOpts)
19 ghc_stage3_HC_OPTS = $(GhcStage3HcOpts)
20
21 ghc_stage2_CC_OPTS = -Iincludes
22 ghc_stage3_CC_OPTS = -Iincludes
23
24 ghc_stage1_C_FILES_NODEPS = ghc/hschooks.c
25
26 ghc_stage2_MKDEPENDC_OPTS = -DMAKING_GHC_BUILD_SYSTEM_DEPENDENCIES
27 ghc_stage3_MKDEPENDC_OPTS = -DMAKING_GHC_BUILD_SYSTEM_DEPENDENCIES
28
29 ifeq "$(GhcWithInterpreter)" "YES"
30 ghc_stage2_HC_OPTS += -DGHCI
31 ghc_stage3_HC_OPTS += -DGHCI
32 endif
33
34 ifeq "$(GhcDebugged)" "YES"
35 ghc_HC_OPTS += -debug
36 endif
37
38 ifeq "$(GhcDynamic)" "YES"
39 ghc_stage2_HC_OPTS += -dynamic
40 ghc_stage3_HC_OPTS += -dynamic
41 endif
42
43 ifeq "$(GhcThreaded)" "YES"
44 # Use threaded RTS with GHCi, so threads don't get blocked at the prompt.
45 ghc_stage2_HC_OPTS += -threaded
46 ghc_stage3_HC_OPTS += -threaded
47 endif
48
49 ifeq "$(GhcProfiled)" "YES"
50 ghc_stage2_HC_OPTS += -prof
51 endif
52
53 ghc_stage1_MODULES = Main
54
55 ghc_stage2_MODULES = $(ghc_stage1_MODULES)
56 ifeq "$(GhcWithInterpreter)" "YES"
57 ghc_stage2_MODULES += GhciMonad GhciTags InteractiveUI
58 endif
59 ghc_stage3_MODULES = $(ghc_stage2_MODULES)
60
61 ghc_stage1_C_SRCS = hschooks.c
62 ghc_stage2_C_SRCS = hschooks.c
63 ghc_stage3_C_SRCS = hschooks.c
64
65 ghc_stage1_PROG = ghc-stage1$(exeext)
66 ghc_stage2_PROG = ghc-stage2$(exeext)
67 ghc_stage3_PROG = ghc-stage3$(exeext)
68
69 # ToDo: perhaps use ghc-cabal to configure ghc-bin
70 ghc_stage1_HC_OPTS += -package $(compiler_PACKAGE)-$(compiler_stage1_VERSION)
71 ghc_stage2_HC_OPTS += -package $(compiler_PACKAGE)-$(compiler_stage2_VERSION)
72 ghc_stage3_HC_OPTS += -package $(compiler_PACKAGE)-$(compiler_stage3_VERSION)
73 ghc_stage2_HC_OPTS += -package haskeline
74 ghc_stage3_HC_OPTS += -package haskeline
75
76 ghc_language_extension_flags = -XCPP \
77                                -XPatternGuards \
78                                -XForeignFunctionInterface \
79                                -XUnboxedTuples \
80                                -XFlexibleInstances \
81                                -XMagicHash
82 ghc_stage1_HC_OPTS += $(ghc_language_extension_flags)
83 ghc_stage2_HC_OPTS += $(ghc_language_extension_flags)
84 ghc_stage3_HC_OPTS += $(ghc_language_extension_flags)
85
86 ghc_stage1_SHELL_WRAPPER = YES
87 ghc_stage2_SHELL_WRAPPER = YES
88 ghc_stage3_SHELL_WRAPPER = YES
89 ghc_stage1_SHELL_WRAPPER_NAME = ghc/ghc.wrapper
90 ghc_stage2_SHELL_WRAPPER_NAME = ghc/ghc.wrapper
91 ghc_stage3_SHELL_WRAPPER_NAME = ghc/ghc.wrapper
92
93 ghc_stage$(INSTALL_GHC_STAGE)_INSTALL_SHELL_WRAPPER = YES
94 ghc_stage$(INSTALL_GHC_STAGE)_INSTALL_SHELL_WRAPPER_NAME = ghc-$(ProjectVersion)
95
96 # We override the program name to be ghc, rather than ghc-stage2.
97 # This means the right program name is used in error messages etc.
98 define ghc_stage$(INSTALL_GHC_STAGE)_INSTALL_SHELL_WRAPPER_EXTRA
99 echo 'executablename="$$exedir/ghc"' >> "$(WRAPPER)"
100 endef
101
102 # if stage is set to something other than "1" or "", disable stage 1
103 ifneq "$(filter-out 1,$(stage))" ""
104 ghc_stage1_NOT_NEEDED = YES
105 endif
106 # if stage is set to something other than "2" or "", disable stage 2
107 ifneq "$(filter-out 2,$(stage))" ""
108 ghc_stage2_NOT_NEEDED = YES
109 endif
110 # stage 3 has to be requested explicitly with stage=3
111 ifneq "$(stage)" "3"
112 ghc_stage3_NOT_NEEDED = YES
113 endif
114 $(eval $(call build-prog,ghc,stage1,0))
115 $(eval $(call build-prog,ghc,stage2,1))
116 $(eval $(call build-prog,ghc,stage3,2))
117
118 ifneq "$(BINDIST)" "YES"
119
120 # ToDo: should we add these in the build-prog macro?
121 ghc/stage1/build/tmp/$(ghc_stage1_PROG) : $(compiler_stage1_v_LIB)
122 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(compiler_stage2_v_LIB)
123 ghc/stage3/build/tmp/$(ghc_stage3_PROG) : $(compiler_stage3_v_LIB)
124
125 ifeq "$(GhcProfiled)" "YES"
126 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(compiler_stage2_p_LIB)
127 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_p_LIB))
128 endif
129
130 # Modules here import HsVersions.h, so we need ghc_boot_platform.h
131 $(ghc_stage1_depfile_haskell) : compiler/stage1/$(PLATFORM_H)
132 $(ghc_stage2_depfile_haskell) : compiler/stage2/$(PLATFORM_H)
133 $(ghc_stage3_depfile_haskell) : compiler/stage3/$(PLATFORM_H)
134
135 all_ghc_stage1 : $(GHC_STAGE1)
136 all_ghc_stage2 : $(GHC_STAGE2)
137 all_ghc_stage3 : $(GHC_STAGE3)
138
139 $(INPLACE_LIB)/extra-gcc-opts : extra-gcc-opts
140         "$(CP)" $< $@
141
142 # The GHC programs need to depend on all the helper programs they might call
143 ifeq "$(GhcUnregisterised)" "NO"
144 $(GHC_STAGE1) : $(MANGLER) $(SPLIT)
145 $(GHC_STAGE2) : $(MANGLER) $(SPLIT)
146 $(GHC_STAGE3) : $(MANGLER) $(SPLIT)
147 endif
148
149 $(GHC_STAGE1) : $(INPLACE_LIB)/extra-gcc-opts
150 $(GHC_STAGE2) : $(INPLACE_LIB)/extra-gcc-opts
151 $(GHC_STAGE3) : $(INPLACE_LIB)/extra-gcc-opts
152
153 ifeq "$(Windows)" "YES"
154 $(GHC_STAGE1) : $(TOUCHY)
155 $(GHC_STAGE2) : $(TOUCHY)
156 $(GHC_STAGE3) : $(TOUCHY)
157 endif
158
159 ifeq "$(BootingFromHc)" "YES"
160 $(GHC_STAGE2) : $(ALL_STAGE1_LIBS)
161 ghc_stage2_OTHER_OBJS += $(compiler_stage2_v_LIB) $(ALL_STAGE1_LIBS) $(ALL_STAGE1_LIBS) $(ALL_STAGE1_LIBS) $(ALL_RTS_LIBS) $(libffi_STATIC_LIB)
162 endif
163
164 endif
165
166 INSTALL_LIBS += extra-gcc-opts
167
168 ifeq "$(Windows)" "NO"
169 install: install_ghc_link
170 .PNONY: install_ghc_link
171 install_ghc_link: 
172         "$(RM)" $(RM_OPTS) "$(DESTDIR)$(bindir)/ghc"
173         $(LN_S) ghc-$(ProjectVersion) "$(DESTDIR)$(bindir)/ghc"
174 else
175 # On Windows we install the main binary as $(bindir)/ghc.exe
176 # To get ghc-<version>.exe we have a little C program in driver/ghc
177 install: install_ghc_post
178 .PHONY: install_ghc_post
179 install_ghc_post: install_bins
180         "$(RM)" $(RM_OPTS) $(DESTDIR)$(bindir)/ghc.exe
181         "$(MV)" -f $(DESTDIR)$(bindir)/ghc-stage$(INSTALL_GHC_STAGE).exe $(DESTDIR)$(bindir)/ghc.exe
182 endif
183