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