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