[project @ 2000-03-15 15:03:20 by simonmar]
[ghc-hetmet.git] / ghc / rts / Makefile
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.21 2000/03/15 15:03:20 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 #  We create two libraries.  One, libHSrts<tag>.a, is built separately
8 #  for each "way".  The other, libHSclib.a is built once: it is just
9 #  .lc files that end up the same no matter what, i.e. completely
10 #  ordinary C.
11
12 #  Other sorta independent, compile-once subdirs are:
13
14 #       gmp             -- GNU multi-precision library (for Integer)
15
16 #-----------------------------------------------------------------------------
17
18 TOP=..
19 DoingRTS=YES
20 include $(TOP)/mk/boilerplate.mk
21
22 WAYS=$(GhcLibWays)
23
24 SRCS_RTS_C  = $(wildcard *.c) $(wildcard hooks/*.c) $(filter-out parallel/SysMan.c,$(wildcard parallel/*.c))
25 SRCS_RTS_S  = $(wildcard *.S)
26 SRCS_RTS_HC = $(wildcard *.hc) $(wildcard parallel/*.hc)
27
28 ifneq "$(way)" "dll"
29 SRCS_RTS_C  := $(filter-out RtsDllMain.c, $(SRCS_RTS_C))
30 else
31 SRCS_RTS_C  := $(filter-out Main.c, $(SRCS_RTS_C))
32 endif
33
34 #-----------------------------------------------------------------------------
35 # creating and installing libHSrts.a (in its many flavors)
36 #
37 LIBRARY = libHSrts$(_way).a
38 LIBOBJS = $(patsubst %.c,%.$(way_)o,$(SRCS_RTS_C)) \
39           $(patsubst %.hc,%.$(way_)o,$(SRCS_RTS_HC)) \
40           $(patsubst %.S,%.$(way_)o,$(SRCS_RTS_S))
41
42 # gcc provides lots of useful warnings if you ask it.
43 # This is a pretty good list to start with - use a # to comment out
44 # any you don't like.
45 WARNING_OPTS += -optc-Wall 
46 WARNING_OPTS += -optc-W
47 WARNING_OPTS += -optc-Wstrict-prototypes 
48 WARNING_OPTS += -optc-Wmissing-prototypes 
49 WARNING_OPTS += -optc-Wmissing-declarations
50 WARNING_OPTS += -optc-Winline
51 WARNING_OPTS += -optc-Waggregate-return
52 WARNING_OPTS += -optc-Wpointer-arith
53 WARNING_OPTS += -optc-Wbad-function-cast
54 #WARNING_OPTS += -optc-Wcast-align
55 #WARNING_OPTS += -optc-Wnested-externs
56 #WARNING_OPTS += -optc-Wshadow
57 #WARNING_OPTS += -optc-Wcast-qual
58 #WARNING_OPTS += -optc-Wno-unused 
59 #WARNING_OPTS += -optc-Wredundant-decls 
60 #WARNING_OPTS += -optc-Wconversion
61
62 SRC_HC_OPTS += -I../includes -I. -Iparallel $(WARNING_OPTS) $(GhcRtsHcOpts) -optc-DCOMPILING_RTS
63 SRC_CC_OPTS = $(GhcRtsCcOpts)
64
65 ifneq "$(way)" "dll"
66 SRC_HC_OPTS += -static
67 endif
68 # SRC_HC_OPTS += -optc-fPIC
69
70 ifeq "$(way)" "mp"
71 SRC_HC_OPTS += -I$$PVM_ROOT/include
72 endif
73
74 C_SRCS = $(SRCS_RTS_C) $(SRCS_RTS_HC) $(SRCS_RTS_S)
75
76 SRC_MKDEPENDC_OPTS += -I. -I../includes
77
78 #-----------------------------------------------------------------------------
79 #
80 # Compiling the individual files
81 #
82 # Rules for building various types of objects from C files,
83 # override the default suffix rule here, as we want to use
84 # ../driver/ghc (a better C compiler :-) to compile the
85 # different RTS pieces
86 #
87 CC=$(GHC_INPLACE) $(HC_OPTS) $($*_HC_OPTS)
88 HC=$(GHC_INPLACE)
89
90 # prevent this value from leaking into the GMP makefile
91 unexport CC
92
93 # -----------------------------------------------------------------------------
94 #
95 #  Building DLLs is only supported on mingw32 at the moment.
96
97 DLL_NAME          = HSrts.dll
98 ifeq "$(way)" "dll"
99 DLL_IMPLIB_NAME   = libHSrts_imp.a
100 SRC_BLD_DLL_OPTS += --export-all -lwinmm -lHS_imp_stub -lgmp -L. -Lgmp
101
102 #
103 # Need an import library containing the symbols the RTS uses from the Prelude.
104 # So, to avoid bootstrapping trouble, we build one containing just the syms
105 # we need. Weirdly named to avoid clashing later on when compiling the contents
106 # of ghc/lib/..
107 #
108 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
109 # below will need to be updated as well.
110
111 $(DLL_NAME) :: libHS_imp_stub.a
112
113 libHS_imp_stub.a :
114         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSprel.dll
115
116 # It's not included in the DLL, but we need to compile it up separately.
117 all :: Main.dll_o
118
119 endif
120
121 # -----------------------------------------------------------------------------
122 # Compile GMP only if we don't have it already
123 #
124 # We use GMP's own configuration stuff, because it's all rather hairy
125 # and not worth re-implementing in our Makefile framework.
126
127 ifneq "$(HaveLibGmp)" "YES"
128 boot ::
129         if [ ! -f gmp/configure ] ; then ( cd gmp && autoconf ); fi;
130         if [ ! -f gmp/mpn/configure ] ; then ( cd gmp/mpn && autoconf ); fi;
131         if [ ! -f gmp/mpz/configure ] ; then ( cd gmp/mpz && autoconf ); fi;
132         if [ ! -f gmp/mpz/tests/configure ] ; then ( cd gmp/mpz/tests && autoconf ); fi;
133         cd gmp && ./configure --target=$(HOSTPLATFORM)
134 # Slight cheatage here to past host as target, but x-compilation isn't supported by ghc.
135
136 all :: gmp/libgmp.a
137
138 install :: gmp/libgmp.a
139
140 clean ::
141         $(MAKE) -C gmp MAKEFLAGS= clean
142
143 ifeq "$(way)" ""
144 INSTALL_LIBS += gmp/libgmp.a
145 endif
146
147 gmp/libgmp.a ::
148         $(MAKE) -C gmp MAKEFLAGS=
149 endif
150
151 #-----------------------------------------------------------------------------
152 #
153 # Building the GUM SysMan
154 #
155
156 ifeq "$(way)" "mp"
157 all :: parallel/SysMan
158
159 ifdef solaris2_TARGET_OS
160 __socket_libs = -lsocket -lnsl
161 else
162 __socket_libs =
163 endif
164
165 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
166         $(RM) $@
167         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
168
169 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
170 INSTALL_LIBEXECS += parallel/SysMan
171 endif
172
173 #-----------------------------------------------------------------------------
174 #
175 # Files to install
176 #
177 # Just libHSrts is installed uniformly across ways
178 #
179 INSTALL_LIBS += $(LIBRARY)
180 ifeq "$(EnableWin32DLLs)" "YES"
181 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
182 INSTALL_LIBS += $(patsubst %.a, %_imp.a, $(LIBRARY))
183 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
184 endif
185
186 include $(TOP)/mk/target.mk
187