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