[project @ 2001-06-12 11:15:45 by simonpj]
[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 ifneq "$(DLLized)" "YES"
29 PACKAGE = -package-name std
30 else
31 # Hack by SPJ to delay if-then-else until the pattern rule when we have $*
32 PACKAGE = $(subst ~, ,$(word $(words dummy $(findstring $(notdir $*), PrelMain )), -package-name~std))
33 endif
34
35 HSLIB = std
36
37 BOOT_SRCS += PrelPrimopWrappers.hs
38
39 #-----------------------------------------------------------------------------
40 #       Setting the GHC compile options
41
42 SRC_HC_OPTS += -cpp -fglasgow-exts $(GhcLibHcOpts) $(PACKAGE)
43 ifneq "$(ILXized)" "YES"
44 SRC_HSC2HS_OPTS += -Icbits
45 endif
46
47 ifdef USE_REPORT_PRELUDE
48 SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1
49 endif
50
51 # ESSENTIAL, for getting reasonable performance from the I/O library:
52 PrelIOBase_HC_OPTS   = -funbox-strict-fields 
53
54 # debugging...
55 PrelIOBase_HC_OPTS   += -fno-ignore-asserts
56 PrelHandle_HC_OPTS   += -fno-ignore-asserts
57 PrelIO_HC_OPTS       += -fno-ignore-asserts
58
59 # Special options
60 PrelStorable_HC_OPTS = -monly-3-regs
61 PrelCError_HC_OPTS   = +RTS -K4m -RTS
62 PrelInt_HC_OPTS      = -monly-3-regs
63 PrelWord_HC_OPTS     = -monly-3-regs
64
65 #-----------------------------------------------------------------------------
66 #       Dependency generation
67
68 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
69
70 #-----------------------------------------------------------------------------
71 #       Rules
72
73 PrelPrimopWrappers.hs: ../../compiler/prelude/primops.txt
74         rm -f PrelPrimopWrappers.hs
75         ../../utils/genprimopcode/genprimopcode  --make-haskell-wrappers \
76                 < ../../compiler/prelude/primops.txt > PrelPrimopWrappers.hs
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 $(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 #      
107
108 # we don't want PrelMain in the GHCi library.
109 GHCI_LIBOBJS = $(filter-out PrelMain.$(way_)o,$(HS_OBJS))
110
111
112 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
113 #               Standard rule
114 HSstd.o :: $(GHCI_LIBOBJS)
115         ld -r -x -o $@ $(GHCI_LIBOBJS)
116
117 else
118 #               Rule for Win32 platform
119 # Keep HSstd.o as a pseudo-target (I think)
120 HSstd.o :: $(GHCI_LIBOBJS)
121         ld -r -x -o HSstd1.o $(filter     Prel%, $(GHCI_LIBOBJS))
122         ld -r -x -o HSstd2.o $(filter-out Prel%, $(GHCI_LIBOBJS))
123 endif # TARGETPLATFORM = win32
124
125
126
127
128 #-----------------------------------------------------------------------------
129 #       Installation; need to install .hi files as well as libraries
130 #
131 # The interface files are put inside the $(libdir), since they
132 # might (potentially) be platform specific..
133 #
134 # override is used here because for binary distributions, datadir is
135 # set on the command line. sigh.
136 #
137 override datadir:=$(libdir)/imports/std
138
139 #
140 # Files to install from here
141
142 ifeq "$(DLLized)" "YES"
143 INSTALL_LIBS  += PrelMain.dll_o
144 endif
145
146 INSTALL_DATAS += PrelGHC.$(way_)hi
147
148
149
150 #-----------------------------------------------------------------------------
151 # ILX stuff.  PLEASE IGNORE THIS UNLESS YOU'RE WORKING ON GHC.NET
152
153
154 ilxstd:
155         (cd //c/devel/fcom/src; make ilxsdk)
156         (cd ../../compiler; make)
157         $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.dll std.ilx-Onot.mono.vlb
158         $(MAKE) way=ilx-O-mono  std.ilx-O.mono.dll std.ilx-O.mono.vlb
159         $(MAKE) way=ilx-Onot-generic std.ilx-Onot.generic.dll
160         $(MAKE) way=ilx-O-generic  std.ilx-O.generic.dll 
161         $(MAKE) way=ilx-Onot-mono-traced std.ilx-Onot.mono.dll std.ilx-Onot.mono-traced.vlb
162         $(MAKE) way=ilx-O-mono-traced  std.ilx-O.mono.dll std.ilx-O.mono-traced.vlb
163         $(MAKE) way=ilx-Onot-generic-traced std.ilx-Onot.generic-traced.dll
164         $(MAKE) way=ilx-O-generic-traced  std.ilx-O.generic-traced.dll 
165         $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.dll std.ilx-Onot.mono-verifiable.vlb
166         $(MAKE) way=ilx-O-mono-verifiable  std.ilx-O.mono-verifiable.dll std.ilx-O.mono-verifiable.vlb
167
168 ilxcheck:
169         (cd //c/devel/fcom/src; make)
170         (cd ../../compiler; make)
171         $(MAKE) way=ilx-Onot-mono  std.ilx-Onot.mono.mvl 
172         $(MAKE) way=ilx-O-mono   std.ilx-O.mono.mvl 
173         $(MAKE) way=ilx-Onot-mono-verifiable  std.ilx-Onot.mono-verifiable.mvl 
174         $(MAKE) way=ilx-O-mono-verifiable   std.ilx-O.mono-verifiable.mvl 
175         $(MAKE) way=ilx-Onot-mono-verifiable  std.ilx-Onot.mono-verifiable.mvr 
176         $(MAKE) way=ilx-O-mono-verifiable   std.ilx-O.mono-verifiable.mvr 
177
178
179 ifeq "$(ILXized)" "YES"
180
181 HS_ILX+=PrelGHC.$(hs2ilx_suffix)_o
182 PrelGHC.$(hs2ilx_suffix)_o: PrelGHC.ilx.real
183         sed -e "s/'PrelBase.dll'/'PrelBase.$(hs2ilx_suffix).dll'/g" $< > $@.tmp
184         mv $@.tmp $@
185
186 PrelGHC.$(hs2ilx_suffix)_hi     : PrelGHC.hi-boot
187         cp $< $@
188
189 std.$(ilx_way).dll: $(HS_MODS)
190         echo "call devcorb2gen free" > tmp.bat
191         echo "al -out:$@ $(HS_MODS)" >> tmp.bat
192         cmd /c tmp.bat
193
194 std.$(ilx_way).mvl: $(HS_IL)
195         ((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 $@
196
197 std.$(ilx_way).vlb: std.$(ilx_way).dll
198         echo "call devcorb2gen fastchecked" > tmp.bat
199         echo "copy c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).dll ." >> tmp.bat
200         echo "copy c:\\devel\\fcom\\src\\bin\\msilxlib$(ilx2il_suffix).dll ." >> tmp.bat
201         echo "copy c:\\devel\\fcom\\src\\bin\\mkvlb.exe ." >> tmp.bat
202         echo ".\\mkvlb.exe -o $@.tmp std.$(ilx_way)" >> tmp.bat
203         cmd /c tmp.bat
204         mv $@.tmp $@
205
206 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
207 mini.mvl: $(MINI_IL)
208         ((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 $@
209
210
211 std.$(ilx_way).mvlx: $(HS_ILX)
212         ILVALID_HOME=c:\\devel\\fcom\\src\\ ILVALID_MSCORLIB=mscorlib.vlb $(ILVALID) c:\\devel\\fcom\\src\\bin\\msilxlib.vlbx  $(HS_ILX) | tee $@
213
214 .PRECIOUS:  $(HS_MODS) $(HS_ILX) $(HS_IL)
215
216 endif # ILXized
217
218 # End ILX stuff. 
219 #-----------------------------------------------------------------------------
220
221
222 include $(TOP)/mk/target.mk
223