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