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