Move the definition of NONEXISTENT into the central cabal-flags.mk
[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
158 CABAL_GHC_FLAGS = -Wall
159 ifeq "$(ghc_ge_605)" "NO"
160 CABAL_GHC_FLAGS += -cpp
161 endif
162
163 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
164
165 .PHONY: boot
166
167 boot: ifBuildable/ifBuildable cabal-bin bootstrapping.conf
168
169 cabal-bin: cabal-bin.hs
170         $(GHC) $(BOOTSTRAPPING_FLAGS) --make cabal-bin -o cabal-bin
171
172 bootstrapping.conf: cabal-bin
173         echo "[]" > $@.tmp
174         -cd filepath && $(CABAL) clean     --distpref=dist-bootstrapping
175         cd filepath && $(CABAL) configure --distpref=dist-bootstrapping --with-compiler=$(GHC) --with-hc-pkg=$(GHC_PKG) --package-db=$(HERE_ABS)/$@.tmp
176         cd filepath && $(CABAL) build     --distpref=dist-bootstrapping
177         cd filepath && $(CABAL) install   --distpref=dist-bootstrapping --inplace
178         -cd Cabal    && $(CABAL) clean     --distpref=dist-bootstrapping
179         cd Cabal    && $(CABAL) configure --distpref=dist-bootstrapping --with-compiler=$(GHC) --with-hc-pkg=$(GHC_PKG) --package-db=$(HERE_ABS)/$@.tmp
180         cd Cabal    && $(CABAL) build     --distpref=dist-bootstrapping
181         cd Cabal    && $(CABAL) install   --distpref=dist-bootstrapping --inplace
182         -cd hpc    && $(CABAL) clean     --distpref=dist-bootstrapping
183         cd hpc    && $(CABAL) configure --distpref=dist-bootstrapping --with-compiler=$(GHC) --with-hc-pkg=$(GHC_PKG) --package-db=$(HERE_ABS)/$@.tmp
184         cd hpc    && $(CABAL) build     --distpref=dist-bootstrapping
185         cd hpc    && $(CABAL) install   --distpref=dist-bootstrapping --inplace
186         mv $@.tmp $@
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 ALL_CONFIGURE_FLAGS = \
239                $(INSTALL_CONFIGURE_FLAGS) \
240                    --haddock-options="--use-contents=../index.html \
241                                       --use-index=../doc-index.html" \
242                    $(CONFIGURE_OPTS)
243
244 $(foreach SUBDIR,$(SUBDIRS), \
245                   stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR)): \
246 stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: cabal-bin \
247                                                           bootstrapping.conf
248         -$(RM) -f stamp/configure.library.*.$* $*/unbuildable
249         $(MKDIRHIER) `dirname $@`
250         ( cd $* && $(CABAL) configure $(ALL_CONFIGURE_FLAGS) ) \
251               && touch $@ || touch $*/unbuildable
252 # We don't touch $@ if configure failed as we would prefer to try
253 # configuring it next time round, rather than assuming it'll still fail.
254 # This is particularly important for bootlibs, where failure means the
255 # build dies!
256
257 # Build the library using 'make'
258 # We re-run 'setup makefile' each time, just in case any preprocessing
259 # needs to be done.  However, we're careful not to overwrite GNUmakefile
260 # if it hasn't changed, so that dependency-generation isn't forced
261 # every time.
262 # Packages in $(SUBDIRS_BUILD) need to use the build.* rules instead of
263 # make.*, so filter them out and use an alternate rule below instead.
264 $(foreach SUBDIR,$(filter-out $(SUBDIRS_BUILD),$(SUBDIRS)),make.library.$(SUBDIR)):\
265 make.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
266                 cabal-bin ifBuildable/ifBuildable bootstrapping.conf
267         if $(IFBUILDABLE) $*; then \
268           cd $* && \
269           cmp -s $(MAKEFILE_LOCAL) Makefile.local || cp $(MAKEFILE_LOCAL) .; \
270           mv GNUmakefile GNUmakefile.tmp; \
271           $(CABAL) makefile -f GNUmakefile; \
272           cmp -s GNUmakefile GNUmakefile.tmp && mv GNUmakefile.tmp GNUmakefile; \
273           $(MAKE) $(MFLAGS) && \
274           $(CABAL) register --inplace; \
275         fi
276
277 MAKEFILE_LOCAL = $(FPTOOLS_TOP_ABS)/libraries/Makefile.local
278
279 # Alternate rule, as described above
280 $(foreach SUBDIR,$(SUBDIRS_BUILD),make.library.$(SUBDIR)):\
281 make.library.%: build.library.%
282
283 # Build the library using 'setup build' (not the default)
284 $(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR)):\
285 build.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
286                  cabal-bin ifBuildable/ifBuildable bootstrapping.conf
287         if $(IFBUILDABLE) $*; then \
288           cd $* && \
289           $(CABAL) build $(BUILD_FLAGS); \
290           $(CABAL) register --inplace; \
291         fi
292
293 .PHONY: doc html
294
295 html: doc
296
297 doc: $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR))
298         sh gen_contents_index --inplace
299
300 # Making hyperlinked source only works if we have hscolour
301 ifneq "$(HSCOLOUR)" ""
302 CABAL_HADDOCK_FLAGS=--hyperlink-source
303 endif
304
305 $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR)):\
306 doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
307                cabal-bin ifBuildable/ifBuildable bootstrapping.conf
308         if $(IFBUILDABLE) $*; then \
309           cd $* && $(CABAL) haddock --html-location='../$$pkg' \
310                                     $(CABAL_HADDOCK_FLAGS); \
311         fi
312 ifneq "$(HSCOLOUR)" ""
313 # We use */src rather than $*/src due to the $(INTEGER_LIBRARY)/integer
314 # mismatch
315         if $(IFBUILDABLE) $*; then cp hscolour.css $*/dist/doc/html/*/src/; fi
316 endif
317
318 .PHONY: distclean clean clean.library.%
319
320 distclean: clean
321
322 clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR))
323         -cd filepath && $(CABAL) clean --distpref=dist-bootstrapping
324         -cd Cabal    && $(CABAL) clean --distpref=dist-bootstrapping
325         -cd hpc      && $(CABAL) clean --distpref=dist-bootstrapping
326         $(RM) -rf bootstrapping/*
327         $(RM) -f bootstrapping.conf     bootstrapping.conf.old
328         $(RM) -f bootstrapping.conf.tmp bootstrapping.conf.tmp.old
329         $(RM) -f cabal-bin cabal-bin.exe
330         $(RM) -rf ifBuildable
331         $(RM) -rf installPackage
332         $(RM) -f libraries.txt index.html doc-index.html doc-index*.html
333         $(RM) -f haddock* *.gif
334
335 distclean:
336         $(RM) $(foreach lib, $(SUBDIRS), $(lib)/.depend $(lib)/.depend.bak)
337
338 $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR)): \
339 clean.library.%:
340         $(RM) -f stamp/configure.library.*.$* $*/unbuildable
341         -cd $* && $(CABAL) clean
342         $(RM) -f $*/Setup $*/Setup.exe $*/Setup.hi $*/Setup.o
343         $(RM) $*/GNUmakefile $*/Makefile.local
344 endif
345
346 # -----------------------------------------------------------------------------
347
348 .PHONY: install install-docs install.library.%
349
350 install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
351 ifeq "$(HADDOCK_DOCS)" "YES"
352         $(INSTALL_DIR)                                                     $(DESTDIR)$(html_installed_root)
353         $(INSTALL_DATA)   index.html doc-index*.html                       $(DESTDIR)$(html_installed_root)
354         $(INSTALL_SCRIPT) gen_contents_index                               $(DESTDIR)$(html_installed_root)
355         # Hacks:
356         $(INSTALL_DATA)   base/dist/doc/html/*/*.css $(DESTDIR)$(html_installed_root)
357         $(INSTALL_DATA)   base/dist/doc/html/*/*.js $(DESTDIR)$(html_installed_root)
358         $(INSTALL_DATA)   base/dist/doc/html/*/*.gif $(DESTDIR)$(html_installed_root)
359 endif
360
361 # Cabal doesn't let us ask to install docs only, so do nothing here
362 install-docs:
363         @:
364
365 # Ideally this would depend on a stamp/build.library.%, but if it does
366 # then we can't change the libraries and then just rerun make.
367 # Thus if you install without building then it will just break.
368
369 # prefix and (on Windows) htmldir use $topdir when configuring, so we
370 # need to tell installPackage the real path to use when installing.
371
372 # We also need to pass all the other directories in, as they can be
373 # overridden when installing a bindist.
374
375 $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)): \
376 install.library.%: installPackage/installPackage ifBuildable/ifBuildable
377         if $(IFBUILDABLE) $*; then \
378           cd $* && \
379           $(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)' ; \
380         fi
381
382 .PHONY: binary-dist binary-dist.library.%
383
384 BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries
385
386 binary-dist: $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)) \
387              installPackage/installPackage
388         mkdir                               $(BIN_DIST_LIBDIR)/installPackage
389         cp        installPackage/installPackage $(BIN_DIST_LIBDIR)/installPackage
390         mkdir                               $(BIN_DIST_LIBDIR)/ifBuildable
391         cp        ifBuildable/ifBuildable       $(BIN_DIST_LIBDIR)/ifBuildable
392         cp    Makefile                      $(BIN_DIST_LIBDIR)
393 ifeq "$(HADDOCK_DOCS)" "YES"
394         cp    gen_contents_index            $(BIN_DIST_LIBDIR)
395         cp    index.html                    $(BIN_DIST_LIBDIR)
396         cp    doc-index*.html               $(BIN_DIST_LIBDIR)
397 endif
398         cp -pR stamp                         $(BIN_DIST_LIBDIR)
399
400 $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)): \
401 binary-dist.library.%:
402         if $(IFBUILDABLE) $*; then \
403           $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*; \
404           cd $* && \
405           cp    $*.cabal      $(BIN_DIST_LIBDIR)/$* && \
406           cp    LICENSE       $(BIN_DIST_LIBDIR)/$* && \
407           cp -R dist          $(BIN_DIST_LIBDIR)/$* && \
408           $(FIND) . -name "*.buildinfo" -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
409           $(FIND) . -name unbuildable -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
410           (cp -RL include      $(BIN_DIST_LIBDIR)/$* || true) && \
411           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
412              \( -name "*_split" -o -name "autogen" \) | xargs rm -rf && \
413           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
414              \( \( -name "*.o" -o -name "*.p_o" \) -a ! -name "HS*" \) \
415              -exec rm {} \; ; \
416         fi
417
418 # Ignore some doc targets that we don't support
419 # The root recurses into us when these targets are made
420 .PHONY: html-no-chunks chm HxS fo dvi ps pdf
421 html-no-chunks chm HxS fo dvi ps pdf:
422         @:
423