[project @ 2000-04-17 11:57:55 by simonmar]
[ghc-hetmet.git] / ghc / rts / Makefile
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.22 2000/04/17 11:57:55 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 SRC_BLD_DLL_OPTS += --export-all -lwinmm -lHS_imp_stub -lgmp -L. -Lgmp
102
103 #
104 # Need an import library containing the symbols the RTS uses from the Prelude.
105 # So, to avoid bootstrapping trouble, we build one containing just the syms
106 # we need. Weirdly named to avoid clashing later on when compiling the contents
107 # of ghc/lib/..
108 #
109 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
110 # below will need to be updated as well.
111
112 $(DLL_NAME) :: libHS_imp_stub.a
113
114 libHS_imp_stub.a :
115         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSprel.dll
116
117 # It's not included in the DLL, but we need to compile it up separately.
118 all :: Main.dll_o
119
120 endif
121
122 # -----------------------------------------------------------------------------
123 # Compile GMP only if we don't have it already
124 #
125 # We use GMP's own configuration stuff, because it's all rather hairy
126 # and not worth re-implementing in our Makefile framework.
127
128 ifneq "$(HaveLibGmp)" "YES"
129 boot ::
130         if [ ! -f gmp/configure ] ; then ( cd gmp && autoconf ); fi;
131         if [ ! -f gmp/mpn/configure ] ; then ( cd gmp/mpn && autoconf ); fi;
132         if [ ! -f gmp/mpz/configure ] ; then ( cd gmp/mpz && autoconf ); fi;
133         if [ ! -f gmp/mpz/tests/configure ] ; then ( cd gmp/mpz/tests && autoconf ); fi;
134         cd gmp && ./configure --target=$(HOSTPLATFORM)
135 # Slight cheatage here to past host as target, but x-compilation isn't supported by ghc.
136
137 all :: gmp/libgmp.a
138
139 install :: gmp/libgmp.a
140
141 clean ::
142         $(MAKE) -C gmp MAKEFLAGS= clean
143
144 ifeq "$(way)" ""
145 INSTALL_LIBS += gmp/libgmp.a
146 endif
147
148 gmp/libgmp.a ::
149         $(MAKE) -C gmp MAKEFLAGS=
150 endif
151
152 #-----------------------------------------------------------------------------
153 #
154 # Building the GUM SysMan
155 #
156
157 ifeq "$(way)" "mp"
158 all :: parallel/SysMan
159
160 ifdef solaris2_TARGET_OS
161 __socket_libs = -lsocket -lnsl
162 else
163 __socket_libs =
164 endif
165
166 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
167         $(RM) $@
168         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
169
170 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
171 INSTALL_LIBEXECS += parallel/SysMan
172 endif
173
174 #-----------------------------------------------------------------------------
175 #
176 # Files to install
177 #
178 # Just libHSrts is installed uniformly across ways
179 #
180 INSTALL_LIBS += $(LIBRARY)
181 ifeq "$(EnableWin32DLLs)" "YES"
182 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
183 INSTALL_LIBS += $(patsubst %.a, %_imp.a, $(LIBRARY))
184 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
185 endif
186
187 include $(TOP)/mk/target.mk
188