Fix build on Windows
[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 HERE_ABS=$(FPTOOLS_TOP_ABS)/libraries
162
163 IFBUILDABLE=ifBuildable/ifBuildable $(HERE_ABS)/boot-packages
164 CABAL=$(HERE_ABS)/cabal-bin $(GHC) $(HERE_ABS)/bootstrapping.conf
165
166 CABAL_GHC_FLAGS = -Wall
167 ifeq "$(ghc_ge_605)" "NO"
168 CABAL_GHC_FLAGS += -cpp
169 endif
170
171 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
172
173 .PHONY: boot
174
175 boot: ifBuildable/ifBuildable cabal-bin bootstrapping.conf
176
177 cabal-bin: cabal-bin.hs
178         $(GHC) $(BOOTSTRAPPING_FLAGS) --make cabal-bin -o cabal-bin
179
180 bootstrapping.conf: cabal-bin
181         echo "[]" > $@.tmp
182         -cd filepath && $(CABAL) clean     --distpref=dist-bootstrapping
183         cd filepath && $(CABAL) configure --distpref=dist-bootstrapping --with-compiler=$(GHC) --package-db=$@.tmp
184         cd filepath && $(CABAL) build     --distpref=dist-bootstrapping
185         cd filepath && $(CABAL) install   --distpref=dist-bootstrapping --inplace
186         -cd Cabal    && $(CABAL) clean     --distpref=dist-bootstrapping
187         cd Cabal    && $(CABAL) configure --distpref=dist-bootstrapping --with-compiler=$(GHC) --package-db=$@.tmp
188         cd Cabal    && $(CABAL) build     --distpref=dist-bootstrapping
189         cd Cabal    && $(CABAL) install   --distpref=dist-bootstrapping --inplace
190         mv $@.tmp $@
191
192 installPackage/installPackage: installPackage.hs
193         -$(RM) -rf installPackage
194         mkdir installPackage
195         $(CP) installPackage.hs installPackage/
196         cd installPackage && $(FPTOOLS_TOP_ABS)/compiler/stage1/ghc-inplace \
197                                  --make installPackage -o installPackage \
198                                  $(DEPLOYMENT_OPTS)
199
200 ifBuildable/ifBuildable: ifBuildable.hs
201         -$(RM) -rf ifBuildable
202         mkdir ifBuildable
203         $(CP) ifBuildable.hs ifBuildable/
204 ifeq "$(stage)" "2"
205         cd ifBuildable && ../$(HC) -Wall --make ifBuildable -o ifBuildable \
206                                  $(DEPLOYMENT_OPTS)
207 else
208         cd ifBuildable && $(GHC) -Wall --make ifBuildable -o ifBuildable
209 endif
210
211 .PHONY: all build configure
212
213 all: build
214
215 ifeq "$(HADDOCK_DOCS)" "YES"
216 all: doc
217 endif
218
219 .PHONY: rebuild.library.%
220 .PHONY: remake.library.%
221
222 $(foreach SUBDIR,$(SUBDIRS),rebuild.library.$(SUBDIR)):\
223 rebuild.library.%: clean.library.% build.library.%
224
225 $(foreach SUBDIR,$(SUBDIRS),remake.library.$(SUBDIR)):\
226 remake.library.%: clean.library.% make.library.%
227
228 # NB. we're depending on make chasing dependencies from left to right here.
229 # This bit goes wrong with 'make -j'.
230 build: $(foreach SUBDIR,$(SUBDIRS),make.library.$(SUBDIR)) \
231        installPackage/installPackage
232
233 configure: $(foreach SUBDIR,$(SUBDIRS), \
234              stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR))
235
236 .PHONY: build.library.%
237 .PHONY: make.library.%
238
239 # We should depend on %/%.cabal here (and in other rules), but make
240 # makes that difficult.
241
242 # We put non-existant paths in when configuring, as we require that
243 # builds don't depend on these paths when making bindists.
244
245 # We rely on all the CONFIGURE_ARGS being quoted with '...', and there
246 # being no 's inside the values.
247 FLAGGED_CONFIGURE_ARGS = $(subst $(space)',\
248                                  $(space)--configure-option=',\
249                                  $(space)$(CONFIGURE_ARGS))
250
251 ifeq "$(Windows)" "YES"
252 NONEXISTENT=c:/NONEXISTENT
253 else
254 NONEXISTENT=/NONEXISTENT
255 endif
256
257 ALL_CONFIGURE_FLAGS = \
258                    $(CONFIGURE_OPTS) \
259                    --prefix=$(NONEXISTENT) \
260                    --bindir=$(NONEXISTENT) \
261                    --libdir=$(NONEXISTENT) \
262                    --libsubdir='$$pkgid' \
263                    --libexecdir=$(NONEXISTENT) \
264                    --datadir=$(NONEXISTENT) \
265                    --docdir=$(NONEXISTENT) \
266                            --haddockdir=$(NONEXISTENT) \
267                    --htmldir=$(NONEXISTENT) \
268                    --with-compiler=$(FPTOOLS_TOP_ABS)/compiler/stage1/ghc-inplace \
269                    --with-hc-pkg=$(FPTOOLS_TOP_ABS)/utils/ghc-pkg/ghc-pkg-inplace \
270                    --with-hsc2hs=$(FPTOOLS_TOP_ABS)/utils/hsc2hs/hsc2hs-inplace \
271                    --with-ld=$(LD) \
272                    --haddock-options="--use-contents=../index.html \
273                                       --use-index=../doc-index.html" \
274                    $(FLAGGED_CONFIGURE_ARGS) \
275                    --configure-option=--with-cc=$(CC)
276
277 $(foreach SUBDIR,$(SUBDIRS), \
278                   stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR)): \
279 stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: cabal-bin
280         -$(RM) -f stamp/configure.library.*.$* $*/unbuildable
281         $(MKDIRHIER) `dirname $@`
282         ( cd $* && $(CABAL) configure $(ALL_CONFIGURE_FLAGS) ) \
283               && touch $@ || touch $*/unbuildable
284 # We don't touch $@ if configure failed as we would prefer to try
285 # configuring it next time round, rather than assuming it'll still fail.
286 # This is particularly important for bootlibs, where failure means the
287 # build dies!
288
289 # Build the library using 'make'
290 # We re-run 'setup makefile' each time, just in case any preprocessing
291 # needs to be done.  However, we're careful not to overwrite GNUmakefile
292 # if it hasn't changed, so that dependency-generation isn't forced
293 # every time.
294 # Packages in $(SUBDIRS_BUILD) need to use the build.* rules instead of
295 # make.*, so filter them out and use an alternate rule below instead.
296 $(foreach SUBDIR,$(filter-out $(SUBDIRS_BUILD),$(SUBDIRS)),make.library.$(SUBDIR)):\
297 make.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
298                 cabal-bin ifBuildable/ifBuildable
299         if $(IFBUILDABLE) $*; then \
300           cd $* && \
301           cmp -s $(MAKEFILE_LOCAL) Makefile.local || cp $(MAKEFILE_LOCAL) .; \
302           mv GNUmakefile GNUmakefile.tmp; \
303           $(CABAL) makefile -f GNUmakefile; \
304           cmp -s GNUmakefile GNUmakefile.tmp && mv GNUmakefile.tmp GNUmakefile; \
305           $(MAKE) $(MFLAGS) && \
306           $(CABAL) register --inplace; \
307         fi
308
309 MAKEFILE_LOCAL = $(FPTOOLS_TOP_ABS)/libraries/Makefile.local
310
311 # Alternate rule, as described above
312 $(foreach SUBDIR,$(SUBDIRS_BUILD),make.library.$(SUBDIR)):\
313 make.library.%: build.library.%
314
315 # Build the library using 'setup build' (not the default)
316 $(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR)):\
317 build.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
318                  cabal-bin ifBuildable/ifBuildable
319         if $(IFBUILDABLE) $*; then \
320           cd $* && \
321           $(CABAL) build $(addprefix --ghc-option=,$(GhcLibHcOpts)); \
322           $(CABAL) register --inplace; \
323         fi
324
325 .PHONY: doc html
326
327 html: doc
328
329 doc: $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR))
330         sh gen_contents_index --inplace
331
332 # Making hyperlinked source only works if we have hscolour
333 ifneq "$(HSCOLOUR)" ""
334 CABAL_HADDOCK_FLAGS=--hyperlink-source
335 endif
336
337 $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR)):\
338 doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
339                cabal-bin ifBuildable/ifBuildable
340         if $(IFBUILDABLE) $*; then \
341           cd $* && $(CABAL) haddock --html-location='../$$pkg' \
342                                     $(CABAL_HADDOCK_FLAGS); \
343         fi
344 ifneq "$(HSCOLOUR)" ""
345 # We use */src rather than $*/src due to the $(INTEGER_LIBRARY)/integer
346 # mismatch
347         if $(IFBUILDABLE) $*; then cp hscolour.css $*/dist/doc/html/*/src/; fi
348 endif
349
350 .PHONY: distclean clean clean.library.%
351
352 distclean: clean
353
354 clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR))
355         $(RM) -rf bootstrapping/*
356         $(RM) -f bootstrapping.conf     bootstrapping.conf.old
357         $(RM) -f bootstrapping.conf.tmp bootstrapping.conf.tmp.old
358         $(RM) -f cabal-bin
359         $(RM) -rf ifBuildable
360         $(RM) -rf installPackage
361         $(RM) -f libraries.txt index.html doc-index.html doc-index*.html
362         $(RM) -f haddock* *.gif
363
364 distclean:
365         $(RM) $(foreach lib, $(SUBDIRS), $(lib)/.depend $(lib)/.depend.bak)
366
367 $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR)): \
368 clean.library.%:
369         $(RM) -f stamp/configure.library.*.$* $*/unbuildable
370         -cd $* && $(CABAL) clean
371         -cd $* && $(CABAL) clean --distpref=dist-bootstrapping
372         $(RM) -f $*/Setup $*/Setup.exe $*/Setup.hi $*/Setup.o
373         $(RM) $*/GNUmakefile $*/Makefile.local
374 endif
375
376 # -----------------------------------------------------------------------------
377
378 .PHONY: install install-docs install.library.%
379
380 install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
381 ifeq "$(HADDOCK_DOCS)" "YES"
382         $(INSTALL_DIR)                                                     $(DESTDIR)$(html_installed_root)
383         $(INSTALL_DATA)   index.html doc-index*.html                       $(DESTDIR)$(html_installed_root)
384         $(INSTALL_SCRIPT) gen_contents_index                               $(DESTDIR)$(html_installed_root)
385         # Hacks:
386         $(INSTALL_DATA)   base/dist/doc/html/*/*.css $(DESTDIR)$(html_installed_root)
387         $(INSTALL_DATA)   base/dist/doc/html/*/*.js $(DESTDIR)$(html_installed_root)
388         $(INSTALL_DATA)   base/dist/doc/html/*/*.gif $(DESTDIR)$(html_installed_root)
389 endif
390
391 # Cabal doesn't let us ask to install docs only, so do nothing here
392 install-docs:
393         @:
394
395 # Ideally this would depend on a stamp/build.library.%, but if it does
396 # then we can't change the libraries and then just rerun make.
397 # Thus if you install without building then it will just break.
398
399 # prefix and (on Windows) htmldir use $topdir when configuring, so we
400 # need to tell installPackage the real path to use when installing.
401
402 # We also need to pass all the other directories in, as they can be
403 # overridden when installing a bindist.
404
405 $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)): \
406 install.library.%: installPackage/installPackage ifBuildable/ifBuildable
407         if $(IFBUILDABLE) $*; then \
408           cd $* && \
409           $(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)' ; \
410         fi
411
412 .PHONY: binary-dist binary-dist.library.%
413
414 BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries
415
416 binary-dist: $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)) \
417              installPackage/installPackage
418         mkdir                               $(BIN_DIST_LIBDIR)/installPackage
419         cp        installPackage/installPackage $(BIN_DIST_LIBDIR)/installPackage
420         mkdir                               $(BIN_DIST_LIBDIR)/ifBuildable
421         cp        ifBuildable/ifBuildable       $(BIN_DIST_LIBDIR)/ifBuildable
422         cp    Makefile                      $(BIN_DIST_LIBDIR)
423 ifeq "$(HADDOCK_DOCS)" "YES"
424         cp    gen_contents_index            $(BIN_DIST_LIBDIR)
425         cp    index.html                    $(BIN_DIST_LIBDIR)
426         cp    doc-index*.html               $(BIN_DIST_LIBDIR)
427 endif
428         cp -pR stamp                         $(BIN_DIST_LIBDIR)
429
430 $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)): \
431 binary-dist.library.%:
432         if $(IFBUILDABLE) $*; then \
433           $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*; \
434           cd $* && \
435           cp    $*.cabal      $(BIN_DIST_LIBDIR)/$* && \
436           cp    LICENSE       $(BIN_DIST_LIBDIR)/$* && \
437           cp -R dist          $(BIN_DIST_LIBDIR)/$* && \
438           $(FIND) . -name "*.buildinfo" -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
439           $(FIND) . -name unbuildable -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
440           (cp -RL include      $(BIN_DIST_LIBDIR)/$* || true) && \
441           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
442              \( -name "*_split" -o -name "autogen" \) | xargs rm -rf && \
443           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
444              \( \( -name "*.o" -o -name "*.p_o" \) -a ! -name "HS*" \) \
445              -exec rm {} \; ; \
446         fi
447
448 # Ignore some doc targets that we don't support
449 # The root recurses into us when these targets are made
450 .PHONY: html-no-chunks chm HxS fo dvi ps pdf
451 html-no-chunks chm HxS fo dvi ps pdf:
452         @:
453