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