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