[project @ 2000-08-21 15:27:18 by simonmar]
[ghc-hetmet.git] / ghc / rts / Makefile
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.34 2000/08/21 15:27:18 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 C_SRCS = $(SRCS_RTS_C) $(SRCS_RTS_HC) $(SRCS_RTS_S)
76
77 SRC_MKDEPENDC_OPTS += -I. -I../includes
78
79 #-----------------------------------------------------------------------------
80 #
81 # Compiling the individual files
82 #
83 # Rules for building various types of objects from C files,
84 # override the default suffix rule here, as we want to use
85 # ../driver/ghc (a better C compiler :-) to compile the
86 # different RTS pieces
87 #
88 CC=$(GHC_INPLACE) $(HC_OPTS) $($*_HC_OPTS)
89 HC=$(GHC_INPLACE)
90
91 # prevent this value from leaking into the GMP makefile
92 unexport CC
93
94 # -----------------------------------------------------------------------------
95 #
96 #  Building DLLs is only supported on mingw32 at the moment.
97
98 DLL_NAME          = HSrts.dll
99 ifeq "$(way)" "dll"
100 DLL_IMPLIB_NAME   = libHSrts_imp.a
101
102 SRC_BLD_DLL_OPTS += --output-def=HSrts.def --export-all -L. -Lgmp -lwinmm \
103                     -lHS_imp_stub -lgmp_imp
104
105 #
106 # Need an import library containing the symbols the RTS uses from the Prelude.
107 # So, to avoid bootstrapping trouble, we build one containing just the syms
108 # we need. Weirdly named to avoid clashing later on when compiling the contents
109 # of ghc/lib/..
110 #
111 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
112 # below will need to be updated as well.
113
114 $(DLL_PEN)/$(DLL_NAME) :: libHS_imp_stub.a
115
116 libHS_imp_stub.a :
117         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSstd.dll
118
119 # It's not included in the DLL, but we need to compile it up separately.
120 all :: Main.dll_o
121
122 endif
123
124 # -----------------------------------------------------------------------------
125 # Compile GMP only if we don't have it already
126 #
127 # We use GMP's own configuration stuff, because it's all rather hairy
128 # and not worth re-implementing in our Makefile framework.
129
130 ifneq "$(HaveLibGmp)" "YES"
131 boot ::
132         cd gmp && ./configure --enable-shared=no
133
134 # DON'T KNOW IF WE NEED SOMETHING LIKE THIS ANYMORE:  --SDM
135 #       cd gmp && ./configure --target=$(HOSTPLATFORM)
136 # Slight cheatage here to past host as target, but x-compilation isn't supported by ghc.
137
138 all :: gmp/libgmp.a
139
140 ifeq "$(way)" "dll"
141 all :: $(DLL_PEN)/gmp.dll
142
143 $(DLL_PEN)/gmp.dll:
144         make -C gmp gmp.dll
145         $(MV) gmp/gmp.dll $(DLL_PEN)
146 endif
147
148 install :: gmp/libgmp.a
149
150 clean ::
151         $(MAKE) -C gmp MAKEFLAGS= clean
152
153 ifeq "$(way)" ""
154 INSTALL_LIBS += gmp/libgmp.a
155 endif
156
157 gmp/libgmp.a ::
158         $(MAKE) -C gmp MAKEFLAGS=
159         @$(CP) gmp/.libs/libgmp.a gmp
160         @$(STRIP) gmp/libgmp.a
161 endif
162
163 #-----------------------------------------------------------------------------
164 #
165 # Building the GUM SysMan
166 #
167
168 ifeq "$(way)" "mp"
169 all :: parallel/SysMan
170
171 ifdef solaris2_TARGET_OS
172 __socket_libs = -lsocket -lnsl
173 else
174 __socket_libs =
175 endif
176
177 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
178         $(RM) $@
179         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
180
181 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
182 INSTALL_LIBEXECS += parallel/SysMan
183 endif
184
185 #-----------------------------------------------------------------------------
186 #
187 # Files to install
188 #
189 # Just libHSrts is installed uniformly across ways
190 #
191 INSTALL_LIBS += $(LIBRARY)
192 ifeq "$(EnableWin32DLLs)" "YES"
193 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
194 ifneq "$(way)" "dll"
195 INSTALL_LIBS += $(patsubst %.a, %_imp.a, $(LIBARY))
196 endif
197 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
198 endif
199
200 include $(TOP)/mk/target.mk
201