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