2b044a4f1470aef2765bce634fe2b625463486ab
[ghc-hetmet.git] / ghc / lib / std / Makefile
1 #################################################################################
2 #
3 #                           ghc/lib/std/Makefile
4 #
5 #               Makefile for building the GHC Prelude libraries umpteen ways
6 #
7 #       
8 #################################################################################
9
10 TOP = ../..
11 include $(TOP)/mk/boilerplate.mk
12
13 WAYS=$(GhcLibWays)
14
15
16 ifeq "$(way)" ""
17 SUBDIRS = cbits
18 else
19 SUBDIRS=
20 endif
21
22 #-----------------------------------------------------------------------------
23 #       Setting the standard variables
24 #
25
26 HC = $(GHC_INPLACE)
27
28 # *** THIS WON'T WORK ANY MORE *** (PACKAGE is now set in fptools/mk/target.mk)
29 ifeq "$(DLLized)" "YES"
30 # Hack by SPJ to delay if-then-else until the pattern rule when we have $*
31 PACKAGE = $(subst ~, ,$(word $(words dummy $(findstring $(notdir $*), PrelMain )), -package-name~std))
32 endif
33
34 PACKAGE = std
35
36 BOOT_SRCS += PrelPrimopWrappers.hs
37
38 #-----------------------------------------------------------------------------
39 #       Setting the GHC compile options
40
41 # -fvia-C added because NCG still can't cope with some primops used in the standard library
42 SRC_HC_OPTS += -fvia-C -cpp -fglasgow-exts $(GhcLibHcOpts)
43 SRC_HSC2HS_OPTS += -Icbits
44
45 ifdef USE_REPORT_PRELUDE
46 SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1
47 endif
48
49 # ESSENTIAL, for getting reasonable performance from the I/O library:
50 PrelIOBase_HC_OPTS   = -funbox-strict-fields 
51
52 # debugging...
53 PrelIOBase_HC_OPTS   += -fno-ignore-asserts
54 PrelHandle_HC_OPTS   += -fno-ignore-asserts
55 PrelIO_HC_OPTS       += -fno-ignore-asserts
56
57 # Special options
58 PrelStorable_HC_OPTS = -monly-3-regs
59 PrelCError_HC_OPTS   = +RTS -K4m -RTS
60
61 #-----------------------------------------------------------------------------
62 #       Dependency generation
63
64 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
65
66 #-----------------------------------------------------------------------------
67 #       Pre-processing (.pp) files
68 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR) -traditional
69 SRC_CPP_OPTS += ${GhcLibCppOpts}
70
71 #-----------------------------------------------------------------------------
72 #       Rules
73
74 PrelPrimopWrappers.hs: ../../compiler/prelude/primops.txt
75         rm -f $@
76         ../../utils/genprimopcode/genprimopcode --make-haskell-wrappers < $< > $@
77
78 PrelGHC.$(way_)hi       : PrelGHC.hi-boot
79         cp $< $@
80
81 boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
82
83 ifneq "$(BootingFromHc)" "YES"
84 boot :: PrelPrimopWrappers.hs
85 all  :: PrelPrimopWrappers.hs
86 endif
87
88 DLL_DESCRIPTION="GHC-compiled Haskell Prelude"
89
90 ifeq "$(DLLized)" "YES"
91 HS_SRCS := $(filter-out PrelMain.lhs, $(HS_SRCS))
92 # PrelMain.dll_o isn't to be included in the final .a, 
93 # but it needs to be generated
94 all :: PrelMain.dll_o
95 endif
96
97 CLEAN_FILES += PrelGHC.hi-boot PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
98
99
100 #-----------------------------------------------------------------------------
101 #       Building the library for GHCi
102 #
103 # The procedure differs from that in fptools/mk/target.mk in two ways:
104 #  (a) we don't want PrelMain in the GHCi std library
105 #  (b) on Win32 we must split it into two, because a single .o file can't
106 #      have more than 65536 relocations in it.
107 #      
108
109 # we don't want PrelMain in the GHCi library.
110 GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS))
111
112 # Turn off standard rule which creates HSstd.o from LIBOBJS.
113 DONT_WANT_STD_GHCI_LIB_RULE=YES
114
115 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
116 #               Standard rule
117 HSstd.o :: $(GHCI_LIBOBJS)
118         ld -r -x -o $@ $(GHCI_LIBOBJS)
119
120 else
121 #               Rule for Win32 platform
122 # Keep HSstd.o as a pseudo-target (I think)
123
124 HSstd.o :: $(GHCI_LIBOBJS)
125         ld -r -x -o HSstd1.o $(filter     Prel%, $(GHCI_LIBOBJS))
126         ld -r -x -o HSstd2.o $(filter-out Prel%, $(GHCI_LIBOBJS))
127         @touch HSstd.o
128 endif # TARGETPLATFORM = i386-unknown-mingw32
129
130
131 #-----------------------------------------------------------------------------
132 #       Installation; need to install .hi files as well as libraries
133 #
134 # The interface files are put inside the $(libdir), since they
135 # might (potentially) be platform specific..
136 #
137 # override is used here because for binary distributions, datadir is
138 # set on the command line. sigh.
139 #
140 override datadir:=$(libdir)/imports/std
141
142 #
143 # Files to install from here
144
145 ifeq "$(DLLized)" "YES"
146 INSTALL_LIBS  += PrelMain.dll_o
147 endif
148
149 INSTALL_DATAS += PrelGHC.$(way_)hi
150
151
152
153 #-----------------------------------------------------------------------------
154 # ILX stuff.  PLEASE IGNORE THIS UNLESS YOU'RE WORKING ON GHC.NET
155
156
157 ilxstd:
158         $(MAKE) way=i std.dll std.i_vlb
159 #       $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.dll std.ilx-Onot.mono.vlb
160 #       $(MAKE) way=ilx-O-mono  std.ilx-O.mono.dll std.ilx-O.mono.vlb
161 #       $(MAKE) way=ilx-Onot-generic std.ilx-Onot.generic.dll
162 #       $(MAKE) way=ilx-O-generic  std.ilx-O.generic.dll
163 #       $(MAKE) way=ilx-Onot-mono-traced std.ilx-Onot.mono.dll std.ilx-Onot.mono-traced.vlb
164 #       $(MAKE) way=ilx-O-mono-traced  std.ilx-O.mono.dll std.ilx-O.mono-traced.vlb
165 #       $(MAKE) way=ilx-Onot-generic-traced std.ilx-Onot.generic-traced.dll
166 #       $(MAKE) way=ilx-O-generic-traced  std.ilx-O.generic-traced.dll
167 #       $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.dll std.ilx-Onot.mono-verifiable.vlb
168 #       $(MAKE) way=ilx-O-mono-verifiable  std.ilx-O.mono-verifiable.dll std.ilx-O.mono-verifiable.vlb
169
170 ilxcheck:
171 #       (cd //c/devel/fcom/src; make)
172 #       (cd ../../compiler; make)
173         $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.mvl
174         $(MAKE) way=ilx-O-mono std.ilx-O.mono.mvl
175         $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.mvl 
176         $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.mvl
177         $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.mvr 
178         $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.mvr
179
180
181 ifeq "$(ILXized)" "YES"
182
183 SRC_HC_OPTS += -optI--assembly-name -optIstd.$(way_)o -optI--module -DILX
184
185 HS_ILX+=PrelGHC.$(way_)o
186 PrelGHC.$(way_)o: PrelGHC.ilx.real
187         sed -e "s/'PrelBase.dll'/'PrelBase.$(way_)o'/g" $< > $@.tmp
188         $(ILX2IL) --module --assembly-name std.$(way_)o -o $@.il $@.tmp
189         $(ILASM) /QUIET /DLL /OUT=$@ $@.il
190 #       mv $@.tmp $@
191
192 std.$(way_)mvl: $(HS_IL)
193         ((ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).vlb $(HS_IL)) 2>&1) | tee $@
194
195 std.$(way_)vlb: std.dll
196         mkvlb.exe -V -o $@.tmp std
197         cmd /c tmp.bat
198         mv $@.tmp $@
199
200 MINI_IL=PrelBase.ilx-Onot.mono.il Prelude.ilx-Onot.mono.il PrelGHC.ilx-Onot.mono.il PrelPrimopWrappers.ilx-Onot.mono.il PrelErr.ilx-Onot.mono.il PrelIOBase.ilx-Onot.mono.il PrelTup.ilx-Onot.mono.il PrelShow.ilx-Onot.mono.il PrelList.ilx-Onot.mono.il PrelPtr.ilx-Onot.mono.il PrelMaybe.ilx-Onot.mono.il PrelPack.ilx-Onot.mono.il PrelST.ilx-Onot.mono.il PrelByteArr.ilx-Onot.mono.il PrelArr.ilx-Onot.mono.il PrelNum.ilx-Onot.mono.il PrelEnum.ilx-Onot.mono.il PrelFloat.ilx-Onot.mono.il PrelReal.ilx-Onot.mono.il PrelConc.ilx-Onot.mono.il
201 mini.mvl: $(MINI_IL)
202         ((ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).vlb  $(MINI_IL)) 2>&1) | tee $@
203
204
205 std.$(ilx_way).mvlx: $(HS_ILX)
206         ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib.vlbx  $(HS_ILX) | tee $@
207
208 endif # ILXized
209
210 # End ILX stuff. 
211 #-----------------------------------------------------------------------------
212
213
214 include $(TOP)/mk/target.mk
215
216 # PrelIO.hsc includes PrelHandle_hsc.h
217 PrelIO.hsc : PrelHandle_hsc.h