8b344b0aad82ee0e797633a60f708fe98904b1c5
[ghc-hetmet.git] / ghc / rts / Makefile
1 #-----------------------------------------------------------------------------
2 #
3 #  This is the Makefile for the runtime-system stuff.
4 #  This stuff is written in C (and cannot be written in Haskell).
5 #
6 #  .c  files are vanilla C,
7 #  .hc files are "Haskellized-C", compiled using the C compiler and
8 #      (possibly) the assembly-mangler.  The GHC driver script
9 #      knows how to compile this stuff.
10 #
11 #  Other sorta independent, compile-once subdirs are:
12 #       gmp             -- GNU multi-precision library (for Integer)
13
14 #-----------------------------------------------------------------------------
15 # Preamble
16
17 TOP=..
18
19 # Set UseGhcForCc: this causes the fptools build system to use a different
20 # set of suffix rules for compiling C code, using $(HC) rather than $(CC)
21 # and prepending "-optc" to $(CC_OPTS).  NB. must be done before including
22 # boilerplate.mk below.
23 UseGhcForCc = $(shell if (test "x$(BootingFromHc)" = "xYES"); then echo NO; else echo YES; fi)
24
25 include $(TOP)/mk/boilerplate.mk
26
27 HC=$(GHC_INPLACE)
28
29 WAYS=$(GhcLibWays)
30
31 PACKAGE = rts
32
33 # Tells the build system not to add various Haskellish options to $(SRC_HC_OPTS)
34 NON_HS_PACKAGE = YES
35
36 # grab sources from these subdirectories
37 ALL_DIRS = hooks parallel
38
39 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
40 ALL_DIRS += win32
41 EXCLUDED_SRCS += Itimer.c Select.c Signals.c
42 endif
43
44 ifneq "$(DLLized)" "YES"
45 EXCLUDED_SRCS += RtsDllMain.c
46 else
47 EXCLUDED_SRCS += Main.c
48 endif
49
50 EXCLUDED_SRCS += parallel/SysMan.c
51
52 # The build system doesn't give us these
53 HC_SRCS = $(filter %.hc, $(SRCS))
54 HC_OBJS = $(patsubst %.hc,%.$(way_)o, $(HC_SRCS))
55
56 CLEAN_FILES += $(HC_OBJS)
57
58 # Override the default $(LIBOBJS) (defaults to $(HS_OBJS))
59 LIBOBJS = $(C_OBJS) $(HC_OBJS)
60
61 SplitObjs=NO
62
63 #-----------------------------------------------------------------------------
64 # Flags for compiling RTS .c and .hc files
65
66 # gcc provides lots of useful warnings if you ask it.
67 # This is a pretty good list to start with - use a # to comment out
68 # any you don't like.
69 WARNING_OPTS += -Wall 
70 WARNING_OPTS += -W
71 WARNING_OPTS += -Wstrict-prototypes 
72 WARNING_OPTS += -Wmissing-prototypes 
73 WARNING_OPTS += -Wmissing-declarations
74 WARNING_OPTS += -Winline
75 WARNING_OPTS += -Waggregate-return
76 #WARNING_OPTS += -Wpointer-arith
77 WARNING_OPTS += -Wbad-function-cast
78 #WARNING_OPTS += -Wcast-align
79 #WARNING_OPTS += -Wnested-externs
80 #WARNING_OPTS += -Wshadow
81 #WARNING_OPTS += -Wcast-qual
82 #WARNING_OPTS += -Wno-unused 
83 #WARNING_OPTS += -Wredundant-decls 
84 #WARNING_OPTS += -Wconversion
85
86 STANDARD_OPTS += -I../includes -I. -Iparallel
87 # COMPILING_RTS is only used when building Win32 DLL support.
88 STANDARD_OPTS += -DCOMPILING_RTS
89
90 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
91 STANDARD_OPTS += -Iwin32
92 endif
93
94 # HC_OPTS is included in both .c and .hc compilations, whereas CC_OPTS is
95 # only included in .c compilations.  HC_OPTS included the WAY_* opts, which
96 # must be included in both types of compilations.
97
98 SRC_CC_OPTS += $(WARNING_OPTS)
99 SRC_CC_OPTS += $(STANDARD_OPTS)
100
101 SRC_CC_OPTS += $(GhcRtsCcOpts)
102 SRC_HC_OPTS += $(GhcRtsHcOpts)
103
104 ifneq "$(DLLized)" "YES"
105 SRC_HC_OPTS += -static
106 endif
107 # SRC_HC_OPTS += -fPIC
108
109 ifeq "$(way)" "mp"
110 SRC_HC_OPTS += -I$$PVM_ROOT/include
111 endif
112
113 ifeq "$(BootingFromHc)" "YES"
114 # use the normal $(CC) when booting from .hc files
115 SRC_CC_OPTS += $(HC_OPTS)
116 endif
117
118 # Currently, you only get 'threads support' in the normal
119 # way.
120 ifeq "$(GhcRtsThreaded)" "YES"
121 ifeq "$(way)" ""
122 SRC_CC_OPTS += -DTHREADED_RTS
123 PACKAGE_CPP_OPTS += -DTHREADED_RTS
124 endif
125 endif
126
127 # If -DDEBUG is in effect, adjust package conf accordingly..
128 ifneq "$(strip $(filter -optc-DDEBUG,$(GhcRtsHcOpts)))" ""
129 PACKAGE_CPP_OPTS += -DDEBUG
130 endif
131
132 ifeq "$(HaveLibMingwEx)" "YES"
133 PACKAGE_CPP_OPTS += -DHAVE_LIBMINGWEX
134 endif
135
136 ifeq "$(DotnetSupport)" "YES"
137
138
139 # Would like to just use SUBDIRS here, but need to
140 # descend into dotnet/ earlier than that.
141 #
142 all ::
143         $(MAKE) -C dotnet all
144
145 # But use SUBDIRS for other recursive targets.
146 SUBDIRS += dotnet
147
148 LIBOBJS += dotnet/Invoke.o
149 endif
150
151 #-----------------------------------------------------------------------------
152 # Include the Front panel code?
153
154 # we need GTK+ for the front panel
155 ifneq "$(GTK_CONFIG)" ""
156 ifeq "$(GhcRtsWithFrontPanel)" "YES"
157 SRC_HC_OPTS             += `$(GTK_CONFIG) --cflags` -optc-DRTS_GTK_FRONTPANEL
158 VisCallbacks_CC_OPTS    += -Wno-unused
159 SRC_MKDEPENDC_OPTS      += `$(GTK_CONFIG) --cflags`
160 else # GhcRtsWithFrontPanel
161 EXCLUDED_SRCS           += $(wildcard Vis*.c)
162 endif
163 else # GTK_CONFIG
164 EXCLUDED_SRCS           += $(wildcard Vis*.c)
165 endif
166
167 #-----------------------------------------------------------------------------
168 # make depend setup
169
170 MKDEPENDC_SRCS     = $(C_SRCS) $(HC_SRCS)
171 SRC_MKDEPENDC_OPTS += -I. -I../includes
172
173 # -----------------------------------------------------------------------------
174 # The auto-generated apply code
175
176 AUTO_APPLY = AutoApply.hc
177
178 gen_apply : GenApply.hs
179         $(GHC) -o $@ -I$(GHC_INCLUDE_DIR) GenApply.hs 
180
181 $(AUTO_APPLY): $(GHC_GENAPPLY)
182         @$(RM) $@
183         $(GHC_GENAPPLY) >$@
184
185 EXTRA_SRCS += $(AUTO_APPLY)
186
187 CLEAN_FILES += $(AUTO_APPLY)
188
189 # -----------------------------------------------------------------------------
190 #
191 #  Building DLLs is only supported on mingw32 at the moment.
192 #
193 ifeq "$(DLLized)" "YES"
194 SRC_BLD_DLL_OPTS += -lHS_imp_stub -lgmp_imp
195
196 # It's not included in the DLL, but we need to compile it up separately.
197 all :: Main.dll_o
198
199 # Need an import library containing the symbols the RTS uses from the Prelude.
200 # So, to avoid bootstrapping trouble, we build one containing just the syms
201 # we need. Weirdly named to avoid clashing later on when compiling the contents
202 # of ghc/lib/..
203 #
204 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
205 # below will need to be updated as well.
206
207 $(DLL_PEN)/HSrts$(_way).dll :: libHS_imp_stub.a
208
209 libHS_imp_stub.a :
210         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSstd.dll
211
212 endif
213
214 # -----------------------------------------------------------------------------
215 # Compile GMP only if we don't have it already
216 #
217 # We use GMP's own configuration stuff, because it's all rather hairy
218 # and not worth re-implementing in our Makefile framework.
219
220 ifneq "$(HaveLibGmp)" "YES"
221 ifneq "$(HaveFrameworkHaskellSupport)" "YES"
222 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
223 boot ::
224         cd gmp && ./configure --enable-shared=no \
225                 --host=`echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g'`
226 else
227 # Pass --target to configure of GMP, so that building for mingwin under
228 # cygwin works properly (when the host is not the same as the target)
229 boot ::
230         cd gmp && CC=$(WhatGccIsCalled) ./configure --enable-shared=no --target=$(HOSTPLATFORM)
231 endif
232
233 # Slight cheatage here to pass host as target, but x-compilation isn't supported by ghc.
234
235 all :: gmp/libgmp.a
236
237 ifeq "$(DLLized)" "YES"
238 all :: $(DLL_PEN)/gmp.dll
239
240 $(DLL_PEN)/gmp.dll:
241         $(MAKE) -C gmp gmp.dll
242         $(MV) gmp/gmp.dll $(DLL_PEN)
243 endif
244
245 install :: gmp/libgmp.a
246
247 ifeq "$(way)" ""
248 clean distclean maintainer-clean ::
249         -$(MAKE) -C gmp MAKEFLAGS= $@
250
251 INSTALL_LIBS += gmp/libgmp.a
252 endif
253 endif
254
255 gmp/libgmp.a ::
256         $(MAKE) -C gmp MAKEFLAGS=
257         @$(CP) gmp/.libs/libgmp.a gmp
258         @$(RANLIB) gmp/libgmp.a
259 endif
260
261 CLEAN_FILES += gmp/libgmp.a
262
263 #-----------------------------------------------------------------------------
264 #
265 # Building the GUM SysMan
266 #
267
268 ifeq "$(way)" "mp"
269 all :: parallel/SysMan
270
271 ifdef solaris2_TARGET_OS
272 __socket_libs = -lsocket -lnsl
273 else
274 __socket_libs =
275 endif
276
277 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
278         $(RM) $@
279         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
280
281 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
282 INSTALL_LIBEXECS += parallel/SysMan
283 endif
284
285 #-----------------------------------------------------------------------------
286 #
287 # Files to install
288 #
289 # Just libHSrts is installed uniformly across ways
290 #
291 INSTALL_LIBS += $(LIBRARY)
292 ifeq "$(DLLized)" "YES"
293 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
294 INSTALL_LIBS += $(patsubst %.a,%_imp.a,$(LIBARY))
295 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
296 endif
297
298 include $(TOP)/mk/target.mk