[project @ 1997-11-24 21:19:30 by sof]
[ghc-hetmet.git] / ghc / lib / Makefile
1 #################################################################################
2 #
3 #                           ghc/lib/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 ifeq ($(IncludeTestDirsInBuild),YES)
18   SUBDIRS += tests
19 endif
20 else
21 SUBDIRS=
22 endif
23
24 #-----------------------------------------------------------------------------
25 #       Setting the standard variables
26 #
27
28 LIB_DIRS = ghc required glaExts concurrent
29
30 LIBRARY = libHS$(_way).a
31 HS_SRCS = $(foreach d, $(LIB_DIRS), $(wildcard $(d)/*.lhs))
32 HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o)
33 LIBOBJS = $(HS_OBJS)
34 HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) ghc/GHC.$(way_)hi
35
36
37 #-----------------------------------------------------------------------------
38 #       Setting the GHC compile options
39
40 SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts)
41
42 #
43 # Profiling options
44 WAY_p_HC_OPTS += -GPrelude
45 WAY_mr_HC_OPTS += -GPrelude
46
47 #
48 # Object and interface files have suffixes tagged with their ways
49 #
50 ifneq "$(way)" ""
51 SRC_HC_OPTS += -hisuf $(way_)hi
52 endif
53
54 # per-module flags
55 ghc/ArrBase_HC_OPTS          += -monly-2-regs
56 glaExts/PackedString_HC_OPTS += -monly-3-regs
57 required/Directory_HC_OPTS   += -monly-3-regs 
58 concurrent/Parallel_HC_OPTS  += -fglasgow-exts
59 required/Time_HC_OPTS        += -monly-3-regs -H12m
60
61 # Far too much heap is needed to compile PrelNum with -O at the
62 # moment, but there you go..
63 ghc/PrelNum_HC_OPTS          += -H30m
64 # Note: this option has to go in the Makefile rather than in an
65 # OPTIONS line in the source file. The reason being that we want
66 # to override the SRC_HC_OPTS of -O, and anything option coming
67 # from the Makefile overrides what's in OPTIONS lines. (mumble_HC_OPTS
68 # does override SRC_HC_OPTS settings)
69 ghc/Unsafe_HC_OPTS           += -Onot
70
71 ghc/PrelBase_HC_OPTS         += -H12m
72 ghc/PrelRead_HC_OPTS         += -H8m
73 ghc/PrelTup_HC_OPTS          += -H8m
74 ghc/ArrBase_HC_OPTS          += -H8m
75 ghc/IOHandle_HC_OPTS         += -H8m
76 required/Time_HC_OPTS        += -H8m
77 glaExts/Int_HC_OPTS          += -H8m
78 glaExts/Word_HC_OPTS         += -H8m
79
80 #-----------------------------------------------------------------------------
81 #       Dependency generation
82
83 SRC_MKDEPENDHS_OPTS += -ighc:required:glaExts:concurrent -I$(GHC_INCLUDE_DIR)
84
85 #-----------------------------------------------------------------------------
86 #       Rules
87
88 ghc/GHC.$(way_)hi       : ghc/GHC.hi-boot
89         cp $< $@
90
91 boot :: ghc/GHC.hi $(foreach way, $(WAYS), ghc/GHC.$(way)_hi)
92
93 #-----------------------------------------------------------------------------
94 #       Installation; need to install .hi files as well as libraries
95 #
96 # The interface files are put inside the $(libdir), since they
97 # might (potentially) be platform specific..
98 #
99 # Note: we use `override' here to ignore the setting of datadir
100 # which may have been set on the command-line..naughty, as it
101 # prevents `datadir' from being used from the command-line.
102 # This only applies to binary-distributions, though.n
103
104 ifeq "$(BIN_DIST)" "1"
105 override datadir:=$(libdir)/imports
106 else
107 datadir:=$(libdir)/imports
108 endif
109
110 #
111 # Files to install from here
112
113 INSTALL_LIBS  += $(LIBRARY)
114 INSTALL_DATAS += $(HS_IFACES)
115
116 include $(TOP)/mk/target.mk