[project @ 1997-06-03 23:42:21 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 #       $Id: Makefile,v 1.11 1997/06/03 23:42:21 sof Exp $
8 #
9 #       
10 #################################################################################
11
12 TOP = ..
13 include $(TOP)/mk/boilerplate.mk
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 #       Setting the GHC compile options
38
39 SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts)
40
41 #
42 # Profiling options
43 WAY_p_HC_OPTS += -prof -GPrelude
44 WAY_mr_HC_OPTS += -prof -GPrelude
45
46 #
47 # Object and interface files have suffixes tagged with their ways
48 #
49 ifneq "$(way)" ""
50 SRC_HC_OPTS += -hisuf $(way_)hi
51 endif
52
53 # per-module flags
54
55 glaExts/PackedString_HC_OPTS += -monly-3-regs
56 required/Directory_HC_OPTS   += -monly-3-regs 
57 concurrent/Parallel_HC_OPTS  += -fglasgow-exts
58 required/Time_HC_OPTS        += -monly-3-regs
59
60 # Far too much heap is needed to compile PrelNum with -O at the
61 # moment, but there you go..
62 ghc/PrelNum_HC_OPTS          += -H30m
63
64 #-----------------------------------------------------------------------------
65 #       Dependency generation
66
67 SRC_MKDEPENDHS_OPTS += -ighc:required:glaExts:concurrent -I$(GHC_INCLUDE_DIR)
68
69 #-----------------------------------------------------------------------------
70 #       Rules
71
72 # In preparation for building the various libHS* libraries,
73 # we create the interface files needed to boot their build.
74 #
75 # Note that the creation of IOBase, Main and GHC interface
76 # files for umpteen ways is strictly not necessary, they're
77 # all the same, but having the redundant files prevents us
78 # from having to treat the said interface files specially
79 # when creating the dependencies. 
80 #
81 # Note: if you change the *.hi-boot files, this will not be
82 # picked up by the Makefile, you'll have to `make hi-boot'
83 #
84 # Note2: hsc will only read from ghc/GHC.hi regardless of 
85 # which `way' you're compiling, so the copies of the GHC
86 # interface file for the different ways are only there
87 # to pacify `make'
88
89 HIBOOTS=GHC Main IOBase
90
91 # Use variable to control this, so that we can generate
92 # new boot interface files for new ways without having
93 # to re-generate the old lot (followed by complete recompile).
94 #
95 HIBOOT_WAYS = norm $(WAYS)
96
97 hi-boot :
98         @for i in $(HIBOOT_WAYS); do \
99                 echo "Booting interface files for way $$i "; \
100                 if [ "$$i" != "norm" ]; then \
101                    j="$${i}_hi"; \
102                 else \
103                    j='hi'; \
104                 fi; \
105                 for ifile in $(HIBOOTS); do \
106                         echo ".. ghc/$${ifile}.$$j "; \
107                         cp ghc/$${ifile}.hi-boot ghc/$${ifile}.$${j}; \
108                 done; \
109         done
110         @touch ghc/IOBase.lhs
111
112 boot :: hi-boot
113
114 #-----------------------------------------------------------------------------
115 #       Installation; need to install .hi files as well as libraries
116 #
117 # The interface files are put inside the $(libdir), since they
118 # might (potentially) be platform specific..
119 #
120 # Note: we use `override' here to ignore the setting of datadir
121 # which may have been set on the command-line..naughty, as it
122 # prevents `datadir' from being used from the command-line.
123 # This only applies to binary-distributions, though.n
124
125 ifeq "$(BIN_DIST)" "1"
126 override datadir:=$(libdir)/imports
127 else
128 datadir:=$(libdir)/imports
129 endif
130
131 #
132 # Files to install from here
133
134 INSTALL_LIBS  += $(LIBRARY)
135 INSTALL_DATAS += $(HS_IFACES)
136
137 include $(TOP)/mk/target.mk
138
139