9c2b8cde7c60538b68e5a9c4193a071317c8fb7e
[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 ifeq "$(way)" ""
16 SUBDIRS = cbits
17 else
18 SUBDIRS=
19 endif
20
21 #-----------------------------------------------------------------------------
22 #       Setting the standard variables
23 #
24
25 LIBRARY = libHS$(_way).a
26 HS_SRCS = $(wildcard *.lhs)
27 HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o)
28 LIBOBJS = $(HS_OBJS)
29 HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) PrelGHC.$(way_)hi
30
31
32 #-----------------------------------------------------------------------------
33 #       Setting the GHC compile options
34
35 SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts) -fcompiling-prelude
36 ifneq "$(way)" "dll"
37 SRC_HC_OPTS += -static
38 endif
39
40 #
41 # Profiling options
42 WAY_p_HC_OPTS += -GPrelude
43 WAY_mr_HC_OPTS += -GPrelude
44
45 #
46 # Object and interface files have suffixes tagged with their ways
47 #
48 ifneq "$(way)" ""
49 SRC_HC_OPTS += -hisuf $(way_)hi
50 endif
51
52 # per-module flags
53 PrelArrExtra_HC_OPTS     += -monly-2-regs
54 Directory_HC_OPTS        += -monly-3-regs 
55 Time_HC_OPTS             += -monly-3-regs
56
57 # argh, adding USP seems to require extra heap... an extra 2 to 6MB,
58 # in fact, on each of these.  (KSW 1998-12)
59
60 # Far too much heap is needed to compile PrelNumExtra with -O at the
61 # moment, but there you go..
62 PrelNumExtra_HC_OPTS     += -H34m -K2m
63
64 PrelPack_HC_OPTS         += -K4m
65 PrelBase_HC_OPTS         += -H12m
66 PrelRead_HC_OPTS         += -H20m
67 PrelTup_HC_OPTS          += -H12m -K2m
68 PrelNum_HC_OPTS          += -H12m -K4m
69 PrelArr_HC_OPTS          += -H8m
70 PrelHandle_HC_OPTS       += -H20m
71 Time_HC_OPTS             += -H24m -K2m
72 Complex_HC_OPTS          += -H10m
73 IO_HC_OPTS               += -H12m
74 PrelMain_HC_OPTS         += -fno-prune-tydecls # avoids an apparent bug; ToDo
75 List_HC_OPTS             += -H8m
76 Directory_HC_OPTS        += -H8m
77
78 #-----------------------------------------------------------------------------
79 #       Dependency generation
80
81 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
82
83 #-----------------------------------------------------------------------------
84 #       Rules
85
86 PrelGHC.$(way_)hi       : PrelGHC.hi-boot
87         cp $< $@
88
89 boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
90
91 DLL_NAME = HSprel.dll
92 DLL_IMPLIB_NAME = libHS_imp.a
93 SRC_BLD_DLL_OPTS += --export-all --output-def=HSprel.def
94 SRC_BLD_DLL_OPTS += -lwinmm -lHSrts_imp -lHS_cbits_imp -lgmp -L. -L../../rts/gmp -L../../rts -Lcbits
95
96
97 ifeq "$(way)" "dll"
98 HS_SRCS := $(filter-out PrelMain.lhs, $(HS_SRCS))
99 endif
100
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 INSTALL_LIBS  += $(LIBRARY)
117 INSTALL_DATAS += $(HS_IFACES)
118
119 include $(TOP)/mk/target.mk