Fix SPARC build, missing #include
[ghc-hetmet.git] / mk / package.mk
1 # -----------------------------------------------------------------------------
2 # $Id: package.mk,v 1.55 2005/05/13 10:05:33 krasimir Exp $
3
4 ifneq "$(PACKAGE)" ""
5
6 # -----------------------------------------------------------------------------
7 # Directory layouts, installation etc.
8
9 # Here Windows & Unix differ.  On Windows, the value of $(prefix) is known
10 # to the compiler, and spliced into package.conf in place of $topdir at
11 # runtime.
12 #
13 # On Unix, we only use absolute paths in package.conf.
14 #
15
16 ifeq "$(Windows)" "YES"
17
18 PKG_LIBDIR  = $$topdir
19 PKG_DATADIR = $$topdir
20
21 else
22
23 PKG_LIBDIR  = $(libdir)
24 PKG_DATADIR = $(datadir)
25
26 endif # Unix
27
28 IMPORT_DIR_INSTALLED = $(PKG_LIBDIR)/imports
29 IMPORT_DIR_INPLACE   = $(FPTOOLS_TOP_ABS)/libraries/$(PACKAGE)
30
31 INCLUDE_DIR_INSTALLED = $(PKG_LIBDIR)/include
32 INCLUDE_DIR_INPLACE   = $(FPTOOLS_TOP_ABS)/libraries/$(PACKAGE)/include
33
34 LIB_DIR_INSTALLED    = $(PKG_LIBDIR)
35 LIB_DIR_INPLACE      = $(FPTOOLS_TOP_ABS)/libraries/$(PACKAGE)
36
37 DATA_DIR_INSTALLED   = $(PKG_DATADIR)
38 DATA_DIR_INPLACE     = $(FPTOOLS_TOP_ABS)/libraries/$(PACKAGE)
39
40 HTML_DIR_INPLACE     = $(FPTOOLS_TOP_ABS)/libraries/$(PACKAGE)/html
41 HTML_DIR_INSTALLED   = $(PKG_DATADIR)/html/libraries/$(PACKAGE)
42
43 HADDOCK_IFACE_INPLACE   = $(HTML_DIR_INPLACE)/$(PACKAGE).haddock
44 HADDOCK_IFACE_INSTALLED = $(HTML_DIR_INSTALLED)/$(PACKAGE).haddock
45
46 # -----------------------------------------------------------------------------
47 # Build the package configuration file and tell the compiler about it.
48
49 # We want to build two versions of the package configuration: one for use
50 # in the 
51
52 ifeq "$(way)" ""
53
54 PACKAGE_CPP_OPTS += -I$(GHC_INCLUDE_DIR) -Iinclude
55
56 PACKAGE_CPP_OPTS += -DPACKAGE=${PACKAGE}
57 PACKAGE_CPP_OPTS += -DVERSION=${VERSION}
58
59 PACKAGE_CPP_OPTS += -DPKG_LIBDIR='"$(PKG_LIBDIR)"'
60 PACKAGE_CPP_OPTS += -DPKG_DATADIR='"$(PKG_DATADIR)"'
61
62 package.conf.inplace   : package.conf.in
63         $(CPP) $(RAWCPP_FLAGS) -P \
64                 -DIMPORT_DIR='"$(IMPORT_DIR_INPLACE)"' \
65                 -DLIB_DIR='"$(LIB_DIR_INPLACE)"' \
66                 -DINCLUDE_DIR='"$(INCLUDE_DIR_INPLACE)"' \
67                 -DDATA_DIR='"$(DATA_DIR_INPLACE)"' \
68                 -DHTML_DIR='"$(HTML_DIR_INPLACE)"' \
69                 -DHADDOCK_IFACE='"$(HADDOCK_IFACE_INPLACE)"' \
70                 -DFPTOOLS_TOP_ABS='"${FPTOOLS_TOP_ABS}"' \
71                 -x c $(PACKAGE_CPP_OPTS) $< | \
72         grep -v '^#pragma GCC' | \
73         sed -e 's/""//g' -e 's/:[       ]*,/: /g' >$@
74
75 install::
76         $(CPP) $(RAWCPP_FLAGS) -P -DINSTALLING \
77                -DIMPORT_DIR='"$(IMPORT_DIR_INSTALLED)"' \
78                -DLIB_DIR='"$(LIB_DIR_INSTALLED)"' \
79                -DINCLUDE_DIR='"$(INCLUDE_DIR_INSTALLED)"' \
80                -DDATA_DIR='"$(DATA_DIR_INSTALLED)"' \
81                -DHTML_DIR='"$(HTML_DIR_INSTALLED)"' \
82                -DHADDOCK_IFACE='"$(HADDOCK_IFACE_INSTALLED)"' \
83                -I../includes \
84                -x c $(PACKAGE_CPP_OPTS) package.conf.in \
85             | grep -v '^#pragma GCC' \
86             | sed -e 's/""//g' -e 's/:[   ]*,/: /g' \
87             | $(GHC_PKG_INSTALL_PROG) --global-conf $(DESTDIR)$(datadir)/package.conf update - --force
88
89 GHC_PKG_INSTALL_PROG = $(FPTOOLS_TOP_ABS)/utils/ghc-pkg/dist-install/build/ghc-pkg/ghc-pkg
90
91 # we could be more accurate here and add a dependency on
92 # driver/package.conf, but that doesn't work too well because of
93 # make's limited accuracy with modification times: when doing 'make
94 # boot' in multiple packages, make won't detect that the package
95 # configuration needs updating if it was updated already in the last
96 # second.
97 #
98 # The stamp file goes in $(GHC_DRIVER_DIR), so that if someone happens
99 # to 'make clean' in ghc without cleaning in libraries too, the packages
100 # will be correctly re-installed.
101 #
102
103 STAMP_PKG_CONF = $(GHC_DRIVER_DIR)/stamp-pkg-conf-$(PACKAGE)
104 CLEAN_FILES += $(STAMP_PKG_CONF)
105
106 ifneq "$(BootingFromHc)" "YES"
107 boot all :: $(STAMP_PKG_CONF)
108 endif
109
110 $(STAMP_PKG_CONF) : package.conf.inplace
111         $(GHC_PKG_INPLACE) update - --force-files <package.conf.inplace
112         @touch $(STAMP_PKG_CONF)
113
114 CLEAN_FILES += package.conf.inplace 
115
116 endif # $(way) == ""
117
118 # -----------------------------------------------------------------------------
119 # Building the static library libHS<pkg>.a
120
121 SRC_HSC2HS_OPTS += -I.
122
123 ifneq "$(NO_SET_HC)" "YES"
124 HC = $(GHC_INPLACE)
125 BOOTSTRAPPING_PACKAGE_CONF_HC_OPTS =
126 endif
127 IGNORE_PACKAGE_FLAG = -package-name  $(PACKAGE)-$(VERSION)
128
129 ifeq "$(NON_HS_PACKAGE)" ""
130 SRC_HC_OPTS     += $(IGNORE_PACKAGE_FLAG)
131 SRC_HC_OPTS     += $(GhcLibHcOpts)
132 SRC_HC_OPTS     += $(patsubst %, -package %, $(PACKAGE_DEPS))
133 endif
134
135 #       -XGenerics switches on generation of support code for 
136 #               derivable type classes.  This is now off by default,
137 #               but we switch it on for the libraries so that we generate
138 #               the code in case someone importing wants it.
139 ifeq "$(NON_HS_PACKAGE)" ""
140 SRC_HC_OPTS     += -XGenerics
141 endif
142
143 ifndef DONT_WANT_STD_LIBRARY
144 ifndef LIBRARY
145 ifeq "$(_way:%_dyn=YES)" "YES"
146 LIBRARY         = libHS$(PACKAGE)$(_way:%_dyn=%)-ghc$(ProjectVersion)$(soext)
147 else
148 LIBRARY         = libHS$(PACKAGE)$(_way).a
149 endif
150 endif
151 endif
152
153 ifeq "$(WAYS)" ""
154 WAYS = $(GhcLibWays)
155 endif
156
157 ifdef LIBRARY
158 all :: $(LIBRARY)
159
160 # POSSIBLE alternative version using --make:
161 #
162 # lib : $(HS_SRCS)
163 #       $(GHC_INPLACE) $(HC_OPTS) --make $(HS_SRCS)
164
165 # $(LIBNAME) : lib
166 #       $(RM) $@
167 #       $(AR) $(AR_OPTS) $@ $(HS_OBJS)
168 #       $(RANLIB) $@
169
170 # %.o : %.hs
171 #       $(GHC_INPLACE) $(HC_OPTS) --make $<
172 # %.o : %.lhs
173 #       $(GHC_INPLACE) $(HC_OPTS) --make $<
174
175 # -----------------------------------------------------------------------------
176 # Installation; need to install .hi files as well as libraries
177
178 ifeq "$(DLLized)" "YES"
179 INSTALL_PROGS += $(DLL_NAME)
180 INSTALL_LIBS += $(patsubst %.a,%_imp.a, $(LIBRARY))
181 endif
182 endif
183
184 # The interface files are put inside the $(libdir), since they
185 # might (potentially) be platform specific..
186
187 ifeq "$(HIERARCHICAL_LIB)" "YES"
188 ifacedir = $(libdir)/imports
189 else
190 ifacedir = $(libdir)/hslibs-imports/$(PACKAGE)
191 endif
192
193 # If the lib consists of a hierachy of modules, we must retain the directory
194 # structure when we install the interfaces.
195 ifeq "$(HIERARCHICAL_LIB)" "YES"
196 INSTALL_IFACES_WITH_DIRS += $(HS_IFACES)
197 ifneq "$(ALL_DIRS)" ""
198 install ::
199         @for i in $(ALL_DIRS); do \
200                 $(INSTALL_DIR) $(ifacedir)/$$i; \
201         done
202 endif
203 else
204 INSTALL_IFACES += $(HS_IFACES)
205 endif
206
207 # -----------------------------------------------------------------------------
208 # Dependencies
209
210 MKDEPENDHS = $(GHC_INPLACE)
211
212 SRC_MKDEPENDC_OPTS += $(addprefix -I,$(ALL_DIRS))
213 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
214
215 endif # $(PACKAGE) != ""
216
217 #--------------------------------------------------------------
218 # Installation
219
220 ifneq "$(NO_INSTALL_LIBRARY)" "YES"
221 INSTALL_LIBS  += $(LIBRARY) $(GHCI_LIBRARY)
222 endif
223
224 #--------------------------------------------------------------
225 # Building dynamically-linkable libraries for GHCi
226 #
227 # Build $(GHCI_LIBRARY) whenever we build $(LIBRARY)
228 #
229 # Why?  GHCi can only link .o files (at the moment), not .a files
230 # so we have to build libFoo.o as well as libFoo.a
231 #
232 # Furthermore, GHCi currently never loads 
233 # profiling libraries (or other non-std ways)
234
235 ifneq "$(LIBRARY)" ""
236
237 ifeq "$(way)" ""
238 ifeq "$(GhcWithInterpreter)" "YES"
239
240 ifndef GHCI_LIBRARY
241 GHCI_LIBRARY = $(patsubst lib%.a,%.o,$(LIBRARY))
242 endif
243
244 CLEAN_FILES  += $(GHCI_LIBRARY)
245
246 all :: $(GHCI_LIBRARY)
247
248 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
249 # If you don't want to build GHCI_LIBRARY the 'standard' way,
250 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
251 # hslibs/Win32 uses this 'feature', which will go away soon
252 # when we can use a "fixed" ld.
253 #
254 $(GHCI_LIBRARY) : $(LIBOBJS)
255         $(LD) -r $(LD_X) -o $@ $(STUBOBJS) $(LIBOBJS)
256
257 endif # DONT_WANT_STD_GHCI_LIB_RULE
258 endif # GhcWithInterpreter
259 endif # way
260 endif # $(LIBRARY) /= ""
261
262 # -----------------------------------------------------------------------------
263 # Doc building with Haddock
264
265 ifneq "$(PACKAGE)" ""
266 ifeq "$(HADDOCK_DOCS)" "YES"
267
268 HS_PPS = $(addsuffix .raw-hs, $(basename $(filter-out $(EXCLUDED_HADDOCK_SRCS), $(HS_SRCS)))) $(EXTRA_HADDOCK_SRCS)
269
270 HTML_DIR = ../html-docs/$(PACKAGE)
271 HTML_DOC = $(HTML_DIR)/haddock.css $(HTML_DIR)/haddock.js
272
273 ifneq "$(HS_PPS)" ""
274
275 CLEAN_FILES += $(HS_PPS) $(addsuffix .tmp, $(HS_SRCS))
276
277 html :: $(HTML_DOC)
278
279 extraclean :: 
280         $(RM) -rf $(HTML_DIR)
281
282 $(HTML_DOC) : $(HS_PPS)
283         @$(INSTALL_DIR) $(HTML_DIR)
284         $(HADDOCK) $(HADDOCK_OPTS) -h -o $(HTML_DIR) $(HS_PPS) \
285                 --package=$(PACKAGE) \
286                 --dump-interface=$(PACKAGE).haddock \
287                 --use-index=../doc-index.html --use-contents=../index.html \
288                 --source-module=$(PackageSourceURL) \
289                 $(foreach pkg, $(PACKAGE_DEPS), \
290                    --read-interface=../$(pkg),../$(pkg)/$(pkg).haddock)
291
292 CLEAN_FILES += $(PACKAGE).haddock
293
294 %.raw-hs : %.lhs
295         $(HC) $(HC_OPTS) -D__HADDOCK__ -E $< -o $@
296
297 %.raw-hs : %.hs
298         $(HC) $(HC_OPTS) -D__HADDOCK__ -E $< -o $@
299
300 HTML_INSTALL_DIR = $(DESTDIR)$(htmldir)/libraries/html/$(PACKAGE)
301
302 install-docs :: $(HTML_DOC)
303         @$(INSTALL_DIR) $(HTML_INSTALL_DIR)
304         for i in $(HTML_DIR)/*; do \
305           echo $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(HTML_INSTALL_DIR); \
306           $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(HTML_INSTALL_DIR); \
307         done; \
308         $(INSTALL_DATA) $(INSTALL_OPTS) $(PACKAGE).haddock $(HTML_INSTALL_DIR); \
309
310 endif # HS_PPS
311 endif # HADDOCK_DOCS
312 endif # $(PACKAGE) /= ""
313
314 # -----------------------------------------------------------------------------
315