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