[project @ 2000-08-07 16:06:38 by rrt]
[ghc-hetmet.git] / ghc / rts / Makefile
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.32 2000/08/07 16:06:38 rrt 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_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         if [ ! -f gmp/configure ] ; then ( cd gmp && autoconf ); fi;
133         if [ ! -f gmp/mpn/configure ] ; then ( cd gmp/mpn && autoconf ); fi;
134         if [ ! -f gmp/mpz/configure ] ; then ( cd gmp/mpz && autoconf ); fi;
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 # make sure the various configure files are included in a source dist.
139 SRC_DIST_FILES += gmp/configure gmp/mpn/configure gmp/mpz/configure
140
141 all :: gmp/libgmp.a
142
143 ifeq "$(way)" "dll"
144 all :: $(DLL_PEN)/gmp.dll
145
146 $(DLL_PEN)/gmp.dll:
147         make -C gmp gmp.dll
148         $(MV) gmp/gmp.dll $(DLL_PEN)
149 endif
150
151 install :: gmp/libgmp.a
152
153 clean ::
154         $(MAKE) -C gmp MAKEFLAGS= clean
155
156 ifeq "$(way)" ""
157 INSTALL_LIBS += gmp/libgmp.a
158 endif
159
160 gmp/libgmp.a ::
161         $(MAKE) -C gmp MAKEFLAGS=
162 endif
163
164 #-----------------------------------------------------------------------------
165 #
166 # Building the GUM SysMan
167 #
168
169 ifeq "$(way)" "mp"
170 all :: parallel/SysMan
171
172 ifdef solaris2_TARGET_OS
173 __socket_libs = -lsocket -lnsl
174 else
175 __socket_libs =
176 endif
177
178 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
179         $(RM) $@
180         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
181
182 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
183 INSTALL_LIBEXECS += parallel/SysMan
184 endif
185
186 #-----------------------------------------------------------------------------
187 #
188 # Files to install
189 #
190 # Just libHSrts is installed uniformly across ways
191 #
192 INSTALL_LIBS += $(LIBRARY)
193 ifeq "$(EnableWin32DLLs)" "YES"
194 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
195 ifneq "$(way)" "dll"
196 INSTALL_LIBS += $(patsubst %.a, %_imp.a, $(LIBARY))
197 endif
198 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
199 endif
200
201 include $(TOP)/mk/target.mk
202