[project @ 2001-08-08 13:21:04 by qrczak]
[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 SRC_HC_OPTS += -cpp -fglasgow-exts $(GhcLibHcOpts)
42 SRC_HSC2HS_OPTS += -Icbits
43
44 ifdef USE_REPORT_PRELUDE
45 SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1
46 endif
47
48 # ESSENTIAL, for getting reasonable performance from the I/O library:
49 PrelIOBase_HC_OPTS   = -funbox-strict-fields 
50
51 # debugging...
52 PrelIOBase_HC_OPTS   += -fno-ignore-asserts
53 PrelHandle_HC_OPTS   += -fno-ignore-asserts
54 PrelIO_HC_OPTS       += -fno-ignore-asserts
55
56 # Special options
57 PrelStorable_HC_OPTS = -monly-3-regs
58 PrelCError_HC_OPTS   = +RTS -K4m -RTS
59
60 #-----------------------------------------------------------------------------
61 #       Dependency generation
62
63 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
64
65 #-----------------------------------------------------------------------------
66 #       Rules
67
68 PrelPrimopWrappers.hs: ../../compiler/prelude/primops.txt
69         rm -f $@
70         ../../utils/genprimopcode/genprimopcode --make-haskell-wrappers < $< > $@
71
72 PrelGHC.$(way_)hi       : PrelGHC.hi-boot
73         cp $< $@
74
75 boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
76
77 ifneq "$(BootingFromHc)" "YES"
78 boot :: PrelPrimopWrappers.hs
79 all  :: PrelPrimopWrappers.hs
80 endif
81
82 DLL_DESCRIPTION="GHC-compiled Haskell Prelude"
83
84 ifeq "$(DLLized)" "YES"
85 HS_SRCS := $(filter-out PrelMain.lhs, $(HS_SRCS))
86 # PrelMain.dll_o isn't to be included in the final .a, 
87 # but it needs to be generated
88 all :: PrelMain.dll_o
89 endif
90
91 CLEAN_FILES += PrelGHC.hi-boot PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
92
93
94 #-----------------------------------------------------------------------------
95 #       Building the library for GHCi
96 #
97 # The procedure differs from that in fptools/mk/target.mk in two ways:
98 #  (a) we don't want PrelMain in the GHCi std library
99 #  (b) on Win32 we must split it into two, because a single .o file can't
100 #      have more than 65536 relocations in it.
101 #      
102
103 # we don't want PrelMain in the GHCi library.
104 GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS))
105
106
107 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
108 #               Standard rule
109 HSstd.o :: $(GHCI_LIBOBJS)
110         ld -r -x -o $@ $(GHCI_LIBOBJS)
111
112 else
113 #               Rule for Win32 platform
114 # Keep HSstd.o as a pseudo-target (I think)
115 HSstd.o :: $(GHCI_LIBOBJS)
116         ld -r -x -o HSstd1.o $(filter     Prel%, $(GHCI_LIBOBJS))
117         ld -r -x -o HSstd2.o $(filter-out Prel%, $(GHCI_LIBOBJS))
118 endif # TARGETPLATFORM = i386-unknown-mingw32
119
120
121
122
123 #-----------------------------------------------------------------------------
124 #       Installation; need to install .hi files as well as libraries
125 #
126 # The interface files are put inside the $(libdir), since they
127 # might (potentially) be platform specific..
128 #
129 # override is used here because for binary distributions, datadir is
130 # set on the command line. sigh.
131 #
132 override datadir:=$(libdir)/imports/std
133
134 #
135 # Files to install from here
136
137 ifeq "$(DLLized)" "YES"
138 INSTALL_LIBS  += PrelMain.dll_o
139 endif
140
141 INSTALL_DATAS += PrelGHC.$(way_)hi
142
143
144
145 #-----------------------------------------------------------------------------
146 # ILX stuff.  PLEASE IGNORE THIS UNLESS YOU'RE WORKING ON GHC.NET
147
148
149 ilxstd:
150         $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.dll std.ilx-Onot.mono.vlb
151         $(MAKE) way=ilx-O-mono  std.ilx-O.mono.dll std.ilx-O.mono.vlb
152         $(MAKE) way=ilx-Onot-generic std.ilx-Onot.generic.dll
153         $(MAKE) way=ilx-O-generic  std.ilx-O.generic.dll 
154         $(MAKE) way=ilx-Onot-mono-traced std.ilx-Onot.mono.dll std.ilx-Onot.mono-traced.vlb
155         $(MAKE) way=ilx-O-mono-traced  std.ilx-O.mono.dll std.ilx-O.mono-traced.vlb
156         $(MAKE) way=ilx-Onot-generic-traced std.ilx-Onot.generic-traced.dll
157         $(MAKE) way=ilx-O-generic-traced  std.ilx-O.generic-traced.dll 
158         $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.dll std.ilx-Onot.mono-verifiable.vlb
159         $(MAKE) way=ilx-O-mono-verifiable  std.ilx-O.mono-verifiable.dll std.ilx-O.mono-verifiable.vlb
160
161 ilxcheck:
162         (cd //c/devel/fcom/src; make)
163         (cd ../../compiler; make)
164         $(MAKE) way=ilx-Onot-mono  std.ilx-Onot.mono.mvl 
165         $(MAKE) way=ilx-O-mono   std.ilx-O.mono.mvl 
166         $(MAKE) way=ilx-Onot-mono-verifiable  std.ilx-Onot.mono-verifiable.mvl 
167         $(MAKE) way=ilx-O-mono-verifiable   std.ilx-O.mono-verifiable.mvl 
168         $(MAKE) way=ilx-Onot-mono-verifiable  std.ilx-Onot.mono-verifiable.mvr 
169         $(MAKE) way=ilx-O-mono-verifiable   std.ilx-O.mono-verifiable.mvr 
170
171
172 ifeq "$(ILXized)" "YES"
173
174 HS_ILX+=PrelGHC.$(hs2ilx_suffix)_o
175 PrelGHC.$(hs2ilx_suffix)_o: PrelGHC.ilx.real
176         sed -e "s/'PrelBase.dll'/'PrelBase.$(hs2ilx_suffix).dll'/g" $< > $@.tmp
177         mv $@.tmp $@
178
179 PrelGHC.$(hs2ilx_suffix)_hi     : PrelGHC.hi-boot
180         cp $< $@
181
182 std.$(ilx_way).dll: $(HS_MODS)
183         echo "call devcorb2gen free" > tmp.bat
184         echo "al -out:$@ $(HS_MODS)" >> tmp.bat
185         cmd /c tmp.bat
186
187 std.$(ilx_way).mvl: $(HS_IL)
188         ((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 $@
189
190 std.$(ilx_way).vlb: std.$(ilx_way).dll
191         echo "call devcorb2gen fastchecked" > tmp.bat
192         echo "copy c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).dll ." >> tmp.bat
193         echo "copy c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).dll ." >> tmp.bat
194         echo "copy c:\\devel\\fcom\\src\\bin\\mkvlb.exe ." >> tmp.bat
195         echo ".\\mkvlb.exe -o $@.tmp std.$(ilx_way)" >> tmp.bat
196         cmd /c tmp.bat
197         mv $@.tmp $@
198
199 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
200 mini.mvl: $(MINI_IL)
201         ((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 $@
202
203
204 std.$(ilx_way).mvlx: $(HS_ILX)
205         ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib.vlbx  $(HS_ILX) | tee $@
206
207 .PRECIOUS:  $(HS_MODS) $(HS_ILX) $(HS_IL)
208
209 endif # ILXized
210
211 # End ILX stuff. 
212 #-----------------------------------------------------------------------------
213
214
215 include $(TOP)/mk/target.mk
216
217 # PrelIO.hsc includes PrelHandle_hsc.h
218 PrelIO.hsc : PrelHandle_hsc.h