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