Add missing dph package to Makefile
[ghc-hetmet.git] / libraries / Makefile
1
2 # To do a fresh build:
3 #
4 #   make clean
5 #   make boot
6 #   make
7 #
8 # To rebuild a particular library <package>:
9 #
10 #   make clean.library.<package>
11 #   make make.library.<package>
12 #
13 # or the following is equivalent:
14 #
15 #   make remake.library.<package>
16 #
17 # To add a new library to the tree, do
18 #
19 #   darcs get http://darcs.haskell.org/packages/foo
20 #   [ -e foo/configure.ac ] && ( cd foo && autoreconf )
21 #   make make.library.foo
22
23 .PHONY: default_target show
24
25 default_target: all
26
27 show:
28         @echo '$(VALUE)="$($(VALUE))"'
29
30 # make doesn't give us an easy way to get the libraries built in
31 # dependency order the first time, but not rebuild base (for example)
32 # when we want to rebuild another library later.
33 # So for now we just don't do anything in parallel in here.
34 .NOTPARALLEL:
35
36 # Ideally we'd just include something to give us variables
37 # for paths and arguments to tools etc, and those set in mk/build.mk.
38 TOP=..
39 include $(TOP)/mk/boilerplate.mk
40
41 SUBDIRS  = ghc-prim $(INTEGER_LIBRARY) base array packedstring
42 SUBDIRS += containers bytestring old-locale old-time filepath directory
43 ifeq "$(GhcLibsWithUnix)" "YES"
44 SUBDIRS += unix
45 endif
46 ifeq "$(Windows)" "YES"
47 SUBDIRS += $(wildcard Win32)
48 endif
49 SUBDIRS += process pretty hpc template-haskell editline Cabal random haskell98
50
51 # Set GhcBootLibs=YES from the command line to work with just the libraries
52 # needed to bootstrap GHC.
53 ifneq "$(GhcBootLibs)" "YES"
54 SUBDIRS += $(wildcard regex-base)
55 SUBDIRS += $(wildcard regex-posix)
56 SUBDIRS += $(wildcard regex-compat)
57 SUBDIRS += $(wildcard parsec)
58 SUBDIRS += $(wildcard haskell-src)
59 SUBDIRS += $(wildcard html)
60 SUBDIRS += $(wildcard network)
61 SUBDIRS += $(wildcard QuickCheck)
62 SUBDIRS += $(wildcard HUnit)
63 SUBDIRS += $(wildcard mtl)
64 SUBDIRS += $(wildcard fgl)
65 SUBDIRS += $(wildcard time)
66 SUBDIRS += $(wildcard OpenGL)
67 SUBDIRS += $(wildcard GLUT)
68 SUBDIRS += $(wildcard OpenAL)
69 SUBDIRS += $(wildcard ALUT)
70 SUBDIRS += $(wildcard stm)
71 SUBDIRS += $(wildcard xhtml)
72 SUBDIRS += $(wildcard cgi)
73 ifeq "$(GhcLibsWithObjectIO)" "YES"
74 SUBDIRS += $(wildcard ObjectIO)
75 endif
76 SUBDIRS += $(wildcard parallel)
77 SUBDIRS_BUILD += $(wildcard ndp)
78 SUBDIRS_BUILD += $(wildcard dph/dph-base)
79 SUBDIRS_BUILD += $(wildcard dph/dph-prim-interface)
80 SUBDIRS_BUILD += $(wildcard dph/dph-prim-seq)
81 SUBDIRS_BUILD += $(wildcard dph/dph-prim-par)
82 SUBDIRS_BUILD += $(wildcard dph/dph)
83 endif
84
85 SUBDIRS += $(SUBDIRS_BUILD)
86
87 # -----------------------------------------------------------------------------
88
89 empty=
90 space=$(empty) $(empty)
91
92 # -----------------------------------------------------------------------------
93
94 ifeq "$(ghc_ge_609)" "YES"
95 GhcLibHcOpts += -fno-warn-deprecated-flags
96 endif
97
98 ifeq "$(RelocatableBuild)" "YES"
99 # On Windows we want to make moveable bindists, but we need to tell
100 # ghc-pkg where the haddock docs are. Therefore we completely ignore
101 # where the user tells us to put the haddock documentation and put it
102 # somewhere whose relative location we know. When installing we need
103 # to give Cabal a real path, though.
104 iprefix             = $$topdir
105 ibindir             = $$topdir
106 ilibdir             = $$topdir
107 ilibexecdir         = $$topdir
108 idynlibdir          = $$topdir
109 idatadir            = $$topdir
110 idocdir             = $$topdir/doc/libraries/$$pkg
111 ihaddockdir         = $$topdir/doc/libraries/$$pkg
112 ihtmldir            = $$httptopdir/doc/libraries/$$pkg
113 html_installed_root = $(prefix)/doc/libraries
114 else
115 # On non-Windows we can just give absolute paths all the time, and
116 # thus obey the htmldir that we are given.
117 iprefix             = $(prefix)
118 ibindir             = $(bindir)
119 ilibdir             = $(libdir)
120 ilibexecdir         = $(libexecdir)
121 idynlibdir          = $(dynlibdir)
122 idatadir            = $(datadir)
123 idocdir             = $(docdir)/libraries/$$pkg
124 ihaddockdir         = $(htmldir)/libraries/$$pkg
125 ihtmldir            = $(htmldir)/libraries/$$pkg
126 html_installed_root = $(htmldir)/libraries
127 endif
128
129 ifneq "$(DOING_BIN_DIST)" "YES"
130
131 CONFIGURE_OPTS =
132 CONFIGURE_STAMP_EXTRAS :=
133
134 ifneq "$(findstring $(space)p$(space), $(space)$(GhcLibWays)$(space))" ""
135 CONFIGURE_OPTS += --enable-library-profiling
136 CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-profiling
137 endif
138
139 ifneq "$(findstring $(space)dyn$(space), $(space)$(GhcLibWays)$(space))" ""
140 CONFIGURE_OPTS += --enable-shared
141 CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-shared
142 endif
143
144 ifeq "$(SplitObjs)" "YES"
145 CONFIGURE_OPTS += --enable-split-objs
146 CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-splitting
147 endif
148
149 ifneq "$(HSCOLOUR)" ""
150 CONFIGURE_OPTS += --with-hscolour=$(HSCOLOUR)
151 endif
152
153 DEPLOYMENT_OPTS = $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS)) \
154                   $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS))
155
156 .PHONY: subdirs
157
158 subdirs:
159         @echo $(SUBDIRS)
160
161 .PHONY: boot
162
163 boot: ifBuildable/ifBuildable cabal-bin ghc-prim/Setup
164
165 HERE_ABS=$(FPTOOLS_TOP_ABS)/libraries
166
167 IFBUILDABLE=ifBuildable/ifBuildable $(HERE_ABS)/boot-packages
168 CABAL=$(HERE_ABS)/cabal-bin
169
170 CABAL_GHC_FLAGS = -Wall
171 ifeq "$(ghc_ge_605)" "NO"
172 CABAL_GHC_FLAGS += -cpp
173 endif
174
175 BOOTSTRAPPING_FLAGS = $(CABAL_GHC_FLAGS) -DCABAL_VERSION=1,3 -odir $(HERE_ABS)/bootstrapping -hidir $(HERE_ABS)/bootstrapping -i$(HERE_ABS)/Cabal -i$(HERE_ABS)/filepath
176
177 # We use -main-is so that GHC doesn't get confused and think
178 # Main.hi/Main.o from cabal belongs to ghc-prim/Setup, or vice-versa.
179 cabal-bin: cabal-bin.hs
180         $(GHC) $(BOOTSTRAPPING_FLAGS) --make cabal-bin -o cabal-bin -main-is Cabal
181
182 # ghc-prim/Setup doesn't really depend on cabal-bin, but pretending that it
183 # does sequentialises building the two of them, which is nice given
184 # they're sharing -odir and -hidir.
185 ghc-prim/Setup: ghc-prim/Setup.hs cabal-bin
186         cd ghc-prim && $(GHC) $(BOOTSTRAPPING_FLAGS) --make Setup -o Setup
187
188 installPackage/installPackage: installPackage.hs
189         -$(RM) -rf installPackage
190         mkdir installPackage
191         $(CP) installPackage.hs installPackage/
192         cd installPackage && $(FPTOOLS_TOP_ABS)/compiler/stage1/ghc-inplace \
193                                  --make installPackage -o installPackage \
194                                  $(DEPLOYMENT_OPTS)
195
196 ifBuildable/ifBuildable: ifBuildable.hs
197         -$(RM) -rf ifBuildable
198         mkdir ifBuildable
199         $(CP) ifBuildable.hs ifBuildable/
200 ifeq "$(stage)" "2"
201         cd ifBuildable && ../$(HC) -Wall --make ifBuildable -o ifBuildable \
202                                  $(DEPLOYMENT_OPTS)
203 else
204         cd ifBuildable && $(GHC) -Wall --make ifBuildable -o ifBuildable
205 endif
206
207 .PHONY: all build configure
208
209 all: build
210
211 ifeq "$(HADDOCK_DOCS)" "YES"
212 all: doc
213 endif
214
215 .PHONY: rebuild.library.%
216 .PHONY: remake.library.%
217
218 $(foreach SUBDIR,$(SUBDIRS),rebuild.library.$(SUBDIR)):\
219 rebuild.library.%: clean.library.% build.library.%
220
221 $(foreach SUBDIR,$(SUBDIRS),remake.library.$(SUBDIR)):\
222 remake.library.%: clean.library.% make.library.%
223
224 # NB. we're depending on make chasing dependencies from left to right here.
225 # This bit goes wrong with 'make -j'.
226 build: $(foreach SUBDIR,$(SUBDIRS),make.library.$(SUBDIR)) \
227        installPackage/installPackage
228
229 configure: $(foreach SUBDIR,$(SUBDIRS), \
230              stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR))
231
232 .PHONY: build.library.%
233 .PHONY: make.library.%
234
235 # We should depend on %/%.cabal here (and in other rules), but make
236 # makes that difficult.
237
238 # We put non-existant paths in when configuring, as we require that
239 # builds don't depend on these paths when making bindists.
240
241 # We rely on all the CONFIGURE_ARGS being quoted with '...', and there
242 # being no 's inside the values.
243 FLAGGED_CONFIGURE_ARGS = $(subst $(space)',\
244                                  $(space)--configure-option=',\
245                                  $(space)$(CONFIGURE_ARGS))
246
247 ifeq "$(Windows)" "YES"
248 NONEXISTENT=c:/NONEXISTENT
249 else
250 NONEXISTENT=/NONEXISTENT
251 endif
252
253 ALL_CONFIGURE_FLAGS = \
254                    $(CONFIGURE_OPTS) \
255                    --prefix=$(NONEXISTENT) \
256                    --bindir=$(NONEXISTENT) \
257                    --libdir=$(NONEXISTENT) \
258                    --libsubdir='$$pkgid' \
259                    --libexecdir=$(NONEXISTENT) \
260                    --datadir=$(NONEXISTENT) \
261                    --docdir=$(NONEXISTENT) \
262                            --haddockdir=$(NONEXISTENT) \
263                    --htmldir=$(NONEXISTENT) \
264                    --with-compiler=$(FPTOOLS_TOP_ABS)/compiler/stage1/ghc-inplace \
265                    --with-hc-pkg=$(FPTOOLS_TOP_ABS)/utils/ghc-pkg/ghc-pkg-inplace \
266                    --with-hsc2hs=$(FPTOOLS_TOP_ABS)/utils/hsc2hs/hsc2hs-inplace \
267                    --with-ld=$(LD) \
268                    --haddock-options="--use-contents=../index.html \
269                                       --use-index=../doc-index.html" \
270                    $(FLAGGED_CONFIGURE_ARGS) \
271                    --configure-option=--with-cc=$(CC)
272
273 $(foreach SUBDIR,$(SUBDIRS), \
274                   stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR)): \
275 stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: cabal-bin
276         -$(RM) -f stamp/configure.library.*.$* $*/unbuildable
277         $(MKDIRHIER) `dirname $@`
278         ( cd $* && $(CABAL) configure $(ALL_CONFIGURE_FLAGS) ) \
279               && touch $@ || touch $*/unbuildable
280 # We don't touch $@ if configure failed as we would prefer to try
281 # configuring it next time round, rather than assuming it'll still fail.
282 # This is particularly important for bootlibs, where failure means the
283 # build dies!
284
285 # Build the library using 'make'
286 # We re-run 'setup makefile' each time, just in case any preprocessing
287 # needs to be done.  However, we're careful not to overwrite GNUmakefile
288 # if it hasn't changed, so that dependency-generation isn't forced
289 # every time.
290 # Packages in $(SUBDIRS_BUILD) need to use the build.* rules instead of
291 # make.*, so filter them out and use an alternate rule below instead.
292 $(foreach SUBDIR,$(filter-out $(SUBDIRS_BUILD),$(SUBDIRS)),make.library.$(SUBDIR)):\
293 make.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
294                 cabal-bin ifBuildable/ifBuildable
295         if $(IFBUILDABLE) $*; then \
296           cd $* && \
297           cmp -s $(MAKEFILE_LOCAL) Makefile.local || cp $(MAKEFILE_LOCAL) .; \
298           mv GNUmakefile GNUmakefile.tmp; \
299           $(CABAL) makefile -f GNUmakefile; \
300           cmp -s GNUmakefile GNUmakefile.tmp && mv GNUmakefile.tmp GNUmakefile; \
301           $(MAKE) $(MFLAGS) && \
302           $(CABAL) register --inplace; \
303         fi
304
305 MAKEFILE_LOCAL = $(FPTOOLS_TOP_ABS)/libraries/Makefile.local
306
307 # Alternate rule, as described above
308 $(foreach SUBDIR,$(SUBDIRS_BUILD),make.library.$(SUBDIR)):\
309 make.library.%: build.library.%
310
311 # Build the library using 'setup build' (not the default)
312 $(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR)):\
313 build.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
314                  cabal-bin ifBuildable/ifBuildable
315         if $(IFBUILDABLE) $*; then \
316           cd $* && \
317           $(CABAL) build $(addprefix --ghc-option=,$(GhcLibHcOpts)); \
318           $(CABAL) register --inplace; \
319         fi
320
321 .PHONY: doc html
322
323 html: doc
324
325 doc: $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR))
326         sh gen_contents_index --inplace
327
328 # Making hyperlinked source only works if we have hscolour
329 ifneq "$(HSCOLOUR)" ""
330 CABAL_HADDOCK_FLAGS=--hyperlink-source
331 endif
332
333 $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR)):\
334 doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
335                cabal-bin ifBuildable/ifBuildable
336         if $(IFBUILDABLE) $*; then \
337           cd $* && $(CABAL) haddock --html-location='../$$pkg' \
338                                     $(CABAL_HADDOCK_FLAGS); \
339         fi
340 ifneq "$(HSCOLOUR)" ""
341 # We use */src rather than $*/src due to the $(INTEGER_LIBRARY)/integer
342 # mismatch
343         if $(IFBUILDABLE) $*; then cp hscolour.css $*/dist/doc/html/*/src/; fi
344 endif
345
346 .PHONY: distclean clean clean.library.%
347
348 distclean: clean
349
350 clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR))
351         $(RM) -rf bootstrapping/*
352         $(RM) -f cabal-bin
353         $(RM) -rf ifBuildable
354         $(RM) -rf installPackage
355         $(RM) -f libraries.txt index.html doc-index.html doc-index*.html
356         $(RM) -f haddock* *.gif
357
358 distclean:
359         $(RM) $(foreach lib, $(SUBDIRS), $(lib)/.depend $(lib)/.depend.bak)
360
361 $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR)): \
362 clean.library.%:
363         $(RM) -f stamp/configure.library.*.$* $*/unbuildable
364         -cd $* && $(CABAL) clean
365         $(RM) -f $*/Setup $*/Setup.exe $*/Setup.hi $*/Setup.o
366         $(RM) $*/GNUmakefile $*/Makefile.local
367 endif
368
369 # -----------------------------------------------------------------------------
370
371 .PHONY: install install-docs install.library.%
372
373 install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
374 ifeq "$(HADDOCK_DOCS)" "YES"
375         $(INSTALL_DIR)                                                     $(DESTDIR)$(html_installed_root)
376         $(INSTALL_DATA)   index.html doc-index*.html                       $(DESTDIR)$(html_installed_root)
377         $(INSTALL_SCRIPT) gen_contents_index                               $(DESTDIR)$(html_installed_root)
378         # Hacks:
379         $(INSTALL_DATA)   base/dist/doc/html/*/*.css $(DESTDIR)$(html_installed_root)
380         $(INSTALL_DATA)   base/dist/doc/html/*/*.js $(DESTDIR)$(html_installed_root)
381         $(INSTALL_DATA)   base/dist/doc/html/*/*.gif $(DESTDIR)$(html_installed_root)
382 endif
383
384 # Cabal doesn't let us ask to install docs only, so do nothing here
385 install-docs:
386         @:
387
388 # Ideally this would depend on a stamp/build.library.%, but if it does
389 # then we can't change the libraries and then just rerun make.
390 # Thus if you install without building then it will just break.
391
392 # prefix and (on Windows) htmldir use $topdir when configuring, so we
393 # need to tell installPackage the real path to use when installing.
394
395 # We also need to pass all the other directories in, as they can be
396 # overridden when installing a bindist.
397
398 $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)): \
399 install.library.%: installPackage/installPackage ifBuildable/ifBuildable
400         if $(IFBUILDABLE) $*; then \
401           cd $* && \
402           $(FPTOOLS_TOP_ABS)/libraries/installPackage/installPackage install '$(GHC_PKG_PROG)' '$(DESTDIR)$(libdir)/package.conf' '$(DESTDIR)' '$(prefix)' '$(iprefix)' '$(ibindir)' '$(ilibdir)' '$(ilibexecdir)' '$(idynlibdir)' '$(idatadir)' '$(idocdir)' '$(ihtmldir)' '$(ihaddockdir)' ; \
403         fi
404
405 .PHONY: binary-dist binary-dist.library.%
406
407 BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries
408
409 binary-dist: $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)) \
410              installPackage/installPackage
411         mkdir                               $(BIN_DIST_LIBDIR)/installPackage
412         cp        installPackage/installPackage $(BIN_DIST_LIBDIR)/installPackage
413         mkdir                               $(BIN_DIST_LIBDIR)/ifBuildable
414         cp        ifBuildable/ifBuildable       $(BIN_DIST_LIBDIR)/ifBuildable
415         cp    Makefile                      $(BIN_DIST_LIBDIR)
416 ifeq "$(HADDOCK_DOCS)" "YES"
417         cp    gen_contents_index            $(BIN_DIST_LIBDIR)
418         cp    index.html                    $(BIN_DIST_LIBDIR)
419         cp    doc-index*.html               $(BIN_DIST_LIBDIR)
420 endif
421         cp -pR stamp                         $(BIN_DIST_LIBDIR)
422
423 $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)): \
424 binary-dist.library.%:
425         if $(IFBUILDABLE) $*; then \
426           $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*; \
427           cd $* && \
428           cp    $*.cabal      $(BIN_DIST_LIBDIR)/$* && \
429           cp    LICENSE       $(BIN_DIST_LIBDIR)/$* && \
430           cp -R dist          $(BIN_DIST_LIBDIR)/$* && \
431           $(FIND) . -name "*.buildinfo" -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
432           $(FIND) . -name unbuildable -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
433           (cp -RL include      $(BIN_DIST_LIBDIR)/$* || true) && \
434           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
435              \( -name "*_split" -o -name "autogen" \) | xargs rm -rf && \
436           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
437              \( \( -name "*.o" -o -name "*.p_o" \) -a ! -name "HS*" \) \
438              -exec rm {} \; ; \
439         fi
440
441 # Ignore some doc targets that we don't support
442 # The root recurses into us when these targets are made
443 .PHONY: html-no-chunks chm HxS fo dvi ps pdf
444 html-no-chunks chm HxS fo dvi ps pdf:
445         @:
446