[project @ 2002-02-12 11:44:54 by simonmar]
[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 ALL_SRCS    += PrelPrimopWrappers.hs
37 CLEAN_FILES += PrelPrimopWrappers.hs
38
39 #-----------------------------------------------------------------------------
40 #       Setting the GHC compile options
41
42 # -fvia-C added because NCG still can't cope with some primops used in the standard library
43 SRC_HC_OPTS += -fvia-C -cpp -fglasgow-exts $(GhcLibHcOpts)
44 SRC_HSC2HS_OPTS += -Icbits
45
46 ifdef USE_REPORT_PRELUDE
47 SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1
48 endif
49
50 # ESSENTIAL, for getting reasonable performance from the I/O library:
51 PrelIOBase_HC_OPTS   = -funbox-strict-fields 
52
53 # debugging...
54 PrelIOBase_HC_OPTS   += -fno-ignore-asserts
55 PrelHandle_HC_OPTS   += -fno-ignore-asserts
56 PrelIO_HC_OPTS       += -fno-ignore-asserts
57
58 # Special options
59 PrelStorable_HC_OPTS = -monly-3-regs
60 PrelCError_HC_OPTS   = +RTS -K4m -RTS
61 PrelPArr_HC_OPTS     = -fparr
62
63 #-----------------------------------------------------------------------------
64 #       Dependency generation
65
66 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
67
68 #-----------------------------------------------------------------------------
69 #       Pre-processing (.pp) files
70 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR) -traditional
71 SRC_CPP_OPTS += ${GhcLibCppOpts}
72
73 #-----------------------------------------------------------------------------
74 #       Rules
75
76 PrelPrimopWrappers.hs: ../../compiler/prelude/primops.txt
77         rm -f $@
78         ../../utils/genprimopcode/genprimopcode --make-haskell-wrappers < $< > $@
79
80 PrelGHC.$(way_)hi       : PrelGHC.hi-boot
81         cp $< $@
82
83 boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
84
85 ifneq "$(BootingFromHc)" "YES"
86 boot :: PrelPrimopWrappers.hs
87 all  :: PrelPrimopWrappers.hs
88 endif
89
90 DLL_DESCRIPTION="GHC-compiled Haskell Prelude"
91
92 CLEAN_FILES += PrelGHC.hi-boot PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
93
94 #-----------------------------------------------------------------------------
95 #       Building the library for GHCi
96 #
97 # The procedure differs from that in fptools/mk/target.mk in one way:
98 #  (*) on Win32 we must split it into two, because a single .o file can't
99 #      have more than 65536 relocations in it.
100 #      
101
102 GHCI_LIBOBJS = $(HS_OBJS)
103
104 # Turn off standard rule which creates HSstd.o from LIBOBJS.
105 DONT_WANT_STD_GHCI_LIB_RULE=YES
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
116 HSstd.o : $(GHCI_LIBOBJS)
117         $(LD) -r -x -o HSstd1.o $(filter     Prel%, $(GHCI_LIBOBJS))
118         $(LD) -r -x -o HSstd2.o $(filter-out Prel%, $(GHCI_LIBOBJS))
119         @touch HSstd.o
120
121 INSTALL_LIBS += HSstd1.o HSstd2.o
122 endif # TARGETPLATFORM = i386-unknown-mingw32
123
124
125 #-----------------------------------------------------------------------------
126 #       Installation; need to install .hi files as well as libraries
127 #
128 # The interface files are put inside the $(libdir), since they
129 # might (potentially) be platform specific..
130 #
131 # override is used here because for binary distributions, datadir is
132 # set on the command line. sigh.
133 #
134 override datadir:=$(libdir)/imports/std
135
136 #
137 # Files to install from here
138
139
140 INSTALL_DATAS += PrelGHC.$(way_)hi
141
142
143
144 #-----------------------------------------------------------------------------
145 # ILX stuff.  PLEASE IGNORE THIS UNLESS YOU'RE WORKING ON GHC.NET
146
147 ilxstd:
148         $(MAKE) way=i std.dll std.i_vlb
149 #       $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.dll std.ilx-Onot.mono.vlb
150 #       $(MAKE) way=ilx-O-mono  std.ilx-O.mono.dll std.ilx-O.mono.vlb
151 #       $(MAKE) way=ilx-Onot-generic std.ilx-Onot.generic.dll
152 #       $(MAKE) way=ilx-O-generic  std.ilx-O.generic.dll
153 #       $(MAKE) way=ilx-Onot-mono-traced std.ilx-Onot.mono.dll std.ilx-Onot.mono-traced.vlb
154 #       $(MAKE) way=ilx-O-mono-traced  std.ilx-O.mono.dll std.ilx-O.mono-traced.vlb
155 #       $(MAKE) way=ilx-Onot-generic-traced std.ilx-Onot.generic-traced.dll
156 #       $(MAKE) way=ilx-O-generic-traced  std.ilx-O.generic-traced.dll
157 #       $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.dll std.ilx-Onot.mono-verifiable.vlb
158 #       $(MAKE) way=ilx-O-mono-verifiable  std.ilx-O.mono-verifiable.dll std.ilx-O.mono-verifiable.vlb
159
160 ilxcheck:
161 #       (cd //c/devel/fcom/src; make)
162 #       (cd ../../compiler; make)
163         $(MAKE) way=ilx-Onot-mono std.ilx-Onot.mono.mvl
164         $(MAKE) way=ilx-O-mono std.ilx-O.mono.mvl
165         $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.mvl 
166         $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.mvl
167         $(MAKE) way=ilx-Onot-mono-verifiable std.ilx-Onot.mono-verifiable.mvr 
168         $(MAKE) way=ilx-O-mono-verifiable std.ilx-O.mono-verifiable.mvr
169
170
171 ifeq "$(ILXized)" "YES"
172
173 SRC_HC_OPTS += -optI--assembly-name -optIstd.$(way_)o -optI--module -DILX -keep-il-file
174
175 HS_ILX+=PrelGHC.$(way_)o
176
177 PrelGHC.ilx: PrelGHC.ilx.pp
178         $(CP) $< $@
179
180 PrelGHC.il: PrelGHC.ilx
181 #       sed -e "s/'PrelBase.dll'/'PrelBase.$(way_)o'/g" $< > $@.tmp
182         $(ILX2IL) --module --assembly-name std.dll --add-suffix-to-assembly msilxlib --suffix-to-add .mono -o $@ $<
183 #       mv $@.tmp $@
184
185 PrelGHC.$(way_)o: PrelGHC.il
186         $(ILASM) /QUIET /DLL /OUT=$@ $<
187
188 std.$(way_)mvl: $(HS_IL) PrelGHC.$(way_)o
189         ((ILSDK_HOME=c:\\devel\\fcom $(ILVALID) c:\\devel\\fcom\\bin\\msilxlib.mono.ilo std.dll $(HS_IL)) 2>&1) | tee $@
190 # .mono should be $(ilx2il_suffix), but that doesn't work at the moment
191
192 std.$(way_)vlb: std.dll
193         mkvlb.exe -V -o $@.tmp std
194         cmd /c tmp.bat
195         mv $@.tmp $@
196
197 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
198 mini.mvl: $(MINI_IL)
199         ((ILSDK_HOME=c:\\devel\\fcom $(ILVALID) c:\\devel\\fcom\\bin\\msilxlib$(ilx2il_suffix).ilo $(MINI_IL)) 2>&1) | tee $@
200
201
202 std.$(ilx_way).mvlx: $(HS_ILX)
203         ILSDK_HOME=c:\\devel\\fcom $(ILVALID) c:\\devel\\fcom\\bin\\msilxlib.ilo $(HS_ILX) | tee $@
204
205 endif # ILXized
206
207 # End ILX stuff. 
208 #-----------------------------------------------------------------------------
209
210
211 include $(TOP)/mk/target.mk