[project @ 2002-02-07 10:20:05 by simonmar]
[ghc-hetmet.git] / ghc / rts / Makefile
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.64 2002/02/07 10:20:05 simonmar 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 # HC_OPTS is included in both .c and .hc compilations, whereas CC_OPTS is
81 # only included in .c compilations.  HC_OPTS included the WAY_* opts, which
82 # must be included in both types of compilations.
83
84 SRC_CC_OPTS += $(WARNING_OPTS)
85
86 SRC_HC_OPTS += -I../includes -I. -Iparallel -DCOMPILING_RTS
87
88 SRC_CC_OPTS += $(GhcRtsCcOpts)
89 SRC_HC_OPTS += $(GhcRtsHcOpts)
90
91 ifneq "$(DLLized)" "YES"
92 SRC_HC_OPTS += -static
93 endif
94 # SRC_HC_OPTS += -fPIC
95
96 ifeq "$(way)" "mp"
97 SRC_HC_OPTS += -I$$PVM_ROOT/include
98 endif
99
100 ifeq "$(BootingFromHc)" "YES"
101 # use the normal $(CC) when booting from .hc files
102 SRC_CC_OPTS += $(HC_OPTS)
103 endif
104
105 # Currently, you only get 'threads support' in the normal
106 # way.
107 ifeq "$(GhcRtsThreaded)" "YES"
108 ifeq "$(way)" ""
109 SRC_CC_OPTS += -DTHREADED_RTS
110 endif
111 endif
112
113 #-----------------------------------------------------------------------------
114 # Include the Front panel code?
115
116 # we need GTK+ for the front panel
117 ifneq "$(GTK_CONFIG)" ""
118 ifeq "$(GhcRtsWithFrontPanel)" "YES"
119 SRC_HC_OPTS             += `$(GTK_CONFIG) --cflags` -optc-DRTS_GTK_FRONTPANEL
120 VisCallbacks_CC_OPTS    += -Wno-unused
121 else # GhcRtsWithFrontPanel
122 EXCLUDED_SRCS           += $(wildcard Vis*.c)
123 endif
124 else # GTK_CONFIG
125 EXCLUDED_SRCS           += $(wildcard Vis*.c)
126 endif
127
128 #-----------------------------------------------------------------------------
129 # make depend setup
130
131 MKDEPENDC_SRCS     = $(C_SRCS) $(HC_SRCS)
132 SRC_MKDEPENDC_OPTS += -I. -I../includes
133
134 # -----------------------------------------------------------------------------
135 #
136 #  Building DLLs is only supported on mingw32 at the moment.
137 #
138 ifeq "$(DLLized)" "YES"
139 SRC_BLD_DLL_OPTS += -lHS_imp_stub -lgmp_imp
140
141 # It's not included in the DLL, but we need to compile it up separately.
142 all :: Main.dll_o
143
144 # Need an import library containing the symbols the RTS uses from the Prelude.
145 # So, to avoid bootstrapping trouble, we build one containing just the syms
146 # we need. Weirdly named to avoid clashing later on when compiling the contents
147 # of ghc/lib/..
148 #
149 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
150 # below will need to be updated as well.
151
152 $(DLL_PEN)/HSrts$(_way).dll :: libHS_imp_stub.a
153
154 libHS_imp_stub.a :
155         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSstd.dll
156
157 endif
158
159 # -----------------------------------------------------------------------------
160 # Compile GMP only if we don't have it already
161 #
162 # We use GMP's own configuration stuff, because it's all rather hairy
163 # and not worth re-implementing in our Makefile framework.
164
165 ifneq "$(HaveLibGmp)" "YES"
166 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
167 boot ::
168         cd gmp && ./configure --enable-shared=no \
169                 --host=`echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g'`
170 else
171 # Pass --target to configure of GMP, so that building for mingwin under
172 # cygwin works properly (when the host is not the same as the target)
173 boot ::
174         cd gmp && CC=$(WhatGccIsCalled) ./configure --enable-shared=no --target=$(HOSTPLATFORM)
175 endif
176
177 # Slight cheatage here to pass host as target, but x-compilation isn't supported by ghc.
178
179 all :: gmp/libgmp.a
180
181 ifeq "$(DLLized)" "YES"
182 all :: $(DLL_PEN)/gmp.dll
183
184 $(DLL_PEN)/gmp.dll:
185         $(MAKE) -C gmp gmp.dll
186         $(MV) gmp/gmp.dll $(DLL_PEN)
187 endif
188
189 install :: gmp/libgmp.a
190
191 ifeq "$(way)" ""
192 clean distclean maintainer-clean ::
193         -$(MAKE) -C gmp MAKEFLAGS= $@
194
195 INSTALL_LIBS += gmp/libgmp.a
196 endif
197
198 gmp/libgmp.a ::
199         $(MAKE) -C gmp MAKEFLAGS=
200         @$(CP) gmp/.libs/libgmp.a gmp
201         @$(RANLIB) gmp/libgmp.a
202 endif
203
204 CLEAN_FILES += gmp/libgmp.a
205
206 #-----------------------------------------------------------------------------
207 #
208 # Building the GUM SysMan
209 #
210
211 ifeq "$(way)" "mp"
212 all :: parallel/SysMan
213
214 ifdef solaris2_TARGET_OS
215 __socket_libs = -lsocket -lnsl
216 else
217 __socket_libs =
218 endif
219
220 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
221         $(RM) $@
222         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
223
224 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
225 INSTALL_LIBEXECS += parallel/SysMan
226 endif
227
228 #-----------------------------------------------------------------------------
229 #
230 # Files to install
231 #
232 # Just libHSrts is installed uniformly across ways
233 #
234 INSTALL_LIBS += $(LIBRARY)
235 ifeq "$(DLLized)" "YES"
236 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
237 INSTALL_LIBS += $(patsubst %.a,%_imp.a,$(LIBARY))
238 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
239 endif
240
241 include $(TOP)/mk/target.mk