6236c38ffaaee25fa79fff7c068b832462f79586
[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.5 1997/03/14 05:30:36 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.hi
35
36 #-----------------------------------------------------------------------------
37 #       Setting the GHC compile options
38
39 SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C $(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 ghc/PackedString_HC_OPTS    = -monly-3-regs
56 required/Directory_HC_OPTS  = -monly-3-regs
57 concurrent/Parallel_HC_OPTS = -fglasgow-exts
58
59 #-----------------------------------------------------------------------------
60 #       Dependency generation
61
62 SRC_MKDEPENDHS_OPTS += -irequired:ghc:hbc:glaExts:concurrent
63
64 #-----------------------------------------------------------------------------
65 #       Rules
66
67 # In preparation for building the various libHS* libraries,
68 # we create the interface files needed to boot their build.
69 #
70 # Note that the creation of IOBase, Main and GHC interface
71 # files for umpteen ways is strictly not necessary, they're
72 # all the same, but having the redundant files prevents us
73 # from having to treat the said interface files specially
74 # when creating the dependencies. 
75 #
76 # Note: if you change the *.hi-boot files, this will not be
77 # picked up by the Makefile, you'll have to `make hi-boot'
78 #
79 # Note2: hsc will only read from ghc/GHC.hi regardless of 
80 # which `way' you're compiling, so the copies of the GHC
81 # interface file for the different ways are only there
82 # to pacify `make'
83
84 HIBOOTS=GHC Main IOBase
85
86 hi-boot :
87         @for i in norm $(WAYS); do \
88                 echo "Booting interface files for way $$i "; \
89                 if [ "$$i" != "norm" ]; then \
90                    j="$${i}_hi"; \
91                 else \
92                    j='hi'; \
93                 fi; \
94                 for ifile in $(HIBOOTS); do \
95                         echo ".. ghc/$${ifile}.$$j "; \
96                         cp ghc/$${ifile}.hi-boot ghc/$${ifile}.$${j}; \
97                 done; \
98         done
99         @touch ghc/IOBase.lhs
100
101 boot :: hi-boot
102
103 #-----------------------------------------------------------------------------
104 #       Installation; need to install .hi files as well as libraries
105 #
106 # The interface files are put inside the $(libdir), since they
107 # might (potentially) be platform specific..
108 #
109 # Note: we use `override' here to ignore the setting of datadir
110 # which may have been set on the command-line..naughty, as it
111 # prevents `datadir' from being used from the command-line.
112 # This only applies to binary-distributions, though.n
113
114 ifeq "$(BIN_DIST)" "1"
115 override datadir:=$(libdir)/imports
116 else
117 datadir:=$(libdir)/imports
118 endif
119
120 #
121 # Files to install from here
122
123 INSTALL_LIBS  += $(LIBRARY)
124 INSTALL_DATAS += $(HS_IFACES)
125
126 include $(TOP)/mk/target.mk
127
128