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