[project @ 1997-07-05 01:04: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 #       $Id: Makefile,v 1.12 1997/07/05 01:04:30 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 ## 6/97 - the manual copying of .hi-boot files to .hi is not used
73 ## anymore, renamer will look for a .hi-boot directly.
74 ## ToDo: remove old setup.
75
76 ifeq "1" "0"
77
78 # In preparation for building the various libHS* libraries,
79 # we create the interface files needed to boot their build.
80 #
81 # Note that the creation of IOBase, Main and GHC interface
82 # files for umpteen ways is strictly not necessary, they're
83 # all the same, but having the redundant files prevents us
84 # from having to treat the said interface files specially
85 # when creating the dependencies. 
86 #
87 # Note: if you change the *.hi-boot files, this will not be
88 # picked up by the Makefile, you'll have to `make hi-boot'
89 #
90 # Note2: hsc will only read from ghc/GHC.hi regardless of 
91 # which `way' you're compiling, so the copies of the GHC
92 # interface file for the different ways are only there
93 # to pacify `make'
94
95 HIBOOTS=GHC Main IOBase
96
97 # Use variable to control this, so that we can generate
98 # new boot interface files for new ways without having
99 # to re-generate the old lot (followed by complete recompile).
100 #
101 HIBOOT_WAYS = norm $(WAYS)
102
103 hi-boot :
104         @for i in $(HIBOOT_WAYS); do \
105                 echo "Booting interface files for way $$i "; \
106                 if [ "$$i" != "norm" ]; then \
107                    j="$${i}_hi"; \
108                 else \
109                    j='hi'; \
110                 fi; \
111                 for ifile in $(HIBOOTS); do \
112                         echo ".. ghc/$${ifile}.$$j "; \
113                         cp ghc/$${ifile}.hi-boot ghc/$${ifile}.$${j}; \
114                 done; \
115         done
116         @touch ghc/IOBase.lhs
117 else
118 hi-boot :
119         @echo "Done."
120 endif
121
122 boot :: hi-boot
123
124 #-----------------------------------------------------------------------------
125 #       Installation; need to install .hi files as well as libraries
126 #
127 # The interface files are put inside the $(libdir), since they
128 # might (potentially) be platform specific..
129 #
130 # Note: we use `override' here to ignore the setting of datadir
131 # which may have been set on the command-line..naughty, as it
132 # prevents `datadir' from being used from the command-line.
133 # This only applies to binary-distributions, though.n
134
135 ifeq "$(BIN_DIST)" "1"
136 override datadir:=$(libdir)/imports
137 else
138 datadir:=$(libdir)/imports
139 endif
140
141 #
142 # Files to install from here
143
144 INSTALL_LIBS  += $(LIBRARY)
145 INSTALL_DATAS += $(HS_IFACES)
146
147 include $(TOP)/mk/target.mk
148
149