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