[project @ 2000-12-08 09:39:05 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 ifeq "$(way)" ""
16 SUBDIRS = cbits
17 else
18 SUBDIRS=
19 endif
20
21 #-----------------------------------------------------------------------------
22 #       Setting the standard variables
23 #
24
25 HC         = $(GHC_INPLACE)
26 MKDEPENDHS = $(GHC)
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 #-----------------------------------------------------------------------------
41 #       Setting the GHC compile options
42
43 SRC_HC_OPTS += -recomp -cpp -fvia-C -fglasgow-exts $(GhcLibHcOpts) $(PACKAGE)
44 ifneq "$(DLLized)" "YES"
45 SRC_HC_OPTS += -static
46 endif
47
48 ifdef USE_REPORT_PRELUDE
49 SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1
50 endif
51
52 #
53 # Object and interface files have suffixes tagged with their ways
54 #
55 ifneq "$(way)" ""
56 SRC_HC_OPTS += -hisuf $(way_)hi
57 endif
58
59 #-----------------------------------------------------------------------------
60 #       Dependency generation
61
62 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
63
64 #-----------------------------------------------------------------------------
65 #       Rules
66
67 PrelGHC.$(way_)hi       : PrelGHC.hi-boot
68         cp $< $@
69
70 boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
71
72 DLL_DESCRIPTION="GHC-compiled Haskell Prelude"
73
74 ifeq "$(DLLized)" "YES"
75 HS_SRCS := $(filter-out PrelMain.lhs PrelHugs.lhs, $(HS_SRCS))
76 endif
77
78 # PrelMain.dll_o isn't to be included in the final .a, 
79 # but it needs to be generated
80 ifeq "$(DLLized)" "YES"
81 all :: PrelMain.dll_o
82 endif
83
84 CLEAN_FILES += PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
85
86 #
87 # If we're building the unregisterised way, it may well be for Hugs.
88 # In that case, remember to bind the cbits objects into a single file
89 # which hugs can load as an auxiliary object file when loading the Prelude.
90 #
91 ifeq "$(way)" "u"
92 all :: libHSstd_cbits.u_o
93 CLEAN_FILES += libHSstd_cbits.u_o
94 libHSstd_cbits.u_o:
95         $(RM) libHSstd_cbits.u_o
96         ld -r -o libHSstd_cbits.u_o cbits/*.o
97 endif
98
99 #-----------------------------------------------------------------------------
100 #       Installation; need to install .hi files as well as libraries
101 #
102 # The interface files are put inside the $(libdir), since they
103 # might (potentially) be platform specific..
104 #
105 # override is used here because for binary distributions, datadir is
106 # set on the command line. sigh.
107 #
108 override datadir:=$(libdir)/imports/std
109
110 #
111 # Files to install from here
112
113 ifeq "$(DLLized)" "YES"
114 INSTALL_LIBS  += PrelMain.dll_o
115 endif
116
117 INSTALL_DATAS += PrelGHC.$(way_)hi
118 ifeq "$(DLLized)" "YES"
119 INSTALL_DATAS := $(filter-out PrelHugs.$(way_)hi,$(INSTALL_DATAS))
120 endif
121
122 include $(TOP)/mk/target.mk