Move installPackage out into its own cabal package under utils/
[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 ifBuildable/ifBuildable: ifBuildable.hs
189         -$(RM) -rf ifBuildable
190         mkdir ifBuildable
191         $(CP) ifBuildable.hs ifBuildable/
192 ifeq "$(stage)" "2"
193         cd ifBuildable && ../$(HC) -Wall --make ifBuildable -o ifBuildable \
194                                  $(DEPLOYMENT_OPTS)
195 else
196         cd ifBuildable && $(GHC) -Wall --make ifBuildable -o ifBuildable
197 endif
198
199 .PHONY: all build configure
200
201 all: build
202
203 ifeq "$(HADDOCK_DOCS)" "YES"
204 all: doc
205 endif
206
207 .PHONY: rebuild.library.%
208 .PHONY: remake.library.%
209
210 $(foreach SUBDIR,$(SUBDIRS),rebuild.library.$(SUBDIR)):\
211 rebuild.library.%: clean.library.% build.library.%
212
213 $(foreach SUBDIR,$(SUBDIRS),remake.library.$(SUBDIR)):\
214 remake.library.%: clean.library.% make.library.%
215
216 # NB. we're depending on make chasing dependencies from left to right here.
217 # This bit goes wrong with 'make -j'.
218 build: $(foreach SUBDIR,$(SUBDIRS),make.library.$(SUBDIR))
219
220 configure: $(foreach SUBDIR,$(SUBDIRS), \
221              stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR))
222
223 .PHONY: build.library.%
224 .PHONY: make.library.%
225
226 # We should depend on %/%.cabal here (and in other rules), but make
227 # makes that difficult.
228
229 ALL_CONFIGURE_FLAGS = \
230                $(INSTALL_DIRS_CONFIGURE_FLAGS) \
231                $(USE_STAGE1_CONFIGURE_FLAGS) \
232                $(COMMON_CONFIGURE_FLAGS) \
233                    --haddock-options="--use-contents=../index.html \
234                                       --use-index=../doc-index.html" \
235                    $(CONFIGURE_OPTS)
236
237 $(foreach SUBDIR,$(SUBDIRS), \
238                   stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR)): \
239 stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: cabal-bin \
240                                                           bootstrapping.conf
241         -$(RM) -f stamp/configure.library.*.$* $*/unbuildable
242         $(MKDIRHIER) `dirname $@`
243         ( cd $* && $(CABAL) configure $(ALL_CONFIGURE_FLAGS) ) \
244               && touch $@ || touch $*/unbuildable
245 # We don't touch $@ if configure failed as we would prefer to try
246 # configuring it next time round, rather than assuming it'll still fail.
247 # This is particularly important for bootlibs, where failure means the
248 # build dies!
249
250 # Build the library using 'make'
251 # We re-run 'setup makefile' each time, just in case any preprocessing
252 # needs to be done.  However, we're careful not to overwrite GNUmakefile
253 # if it hasn't changed, so that dependency-generation isn't forced
254 # every time.
255 # Packages in $(SUBDIRS_BUILD) need to use the build.* rules instead of
256 # make.*, so filter them out and use an alternate rule below instead.
257 $(foreach SUBDIR,$(filter-out $(SUBDIRS_BUILD),$(SUBDIRS)),make.library.$(SUBDIR)):\
258 make.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
259                 cabal-bin ifBuildable/ifBuildable bootstrapping.conf
260         if $(IFBUILDABLE) $*; then \
261           cd $* && \
262           cmp -s $(MAKEFILE_LOCAL) Makefile.local || cp $(MAKEFILE_LOCAL) .; \
263           mv GNUmakefile GNUmakefile.tmp; \
264           $(CABAL) makefile -f GNUmakefile; \
265           cmp -s GNUmakefile GNUmakefile.tmp && mv GNUmakefile.tmp GNUmakefile; \
266           $(MAKE) $(MFLAGS) && \
267           $(CABAL) register --inplace; \
268         fi
269
270 MAKEFILE_LOCAL = $(FPTOOLS_TOP_ABS)/libraries/Makefile.local
271
272 # Alternate rule, as described above
273 $(foreach SUBDIR,$(SUBDIRS_BUILD),make.library.$(SUBDIR)):\
274 make.library.%: build.library.%
275
276 # Build the library using 'setup build' (not the default)
277 $(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR)):\
278 build.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
279                  cabal-bin ifBuildable/ifBuildable bootstrapping.conf
280         if $(IFBUILDABLE) $*; then \
281           cd $* && \
282           $(CABAL) build $(BUILD_FLAGS); \
283           $(CABAL) register --inplace; \
284         fi
285
286 .PHONY: doc html
287
288 html: doc
289
290 doc: $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR))
291         sh gen_contents_index --inplace
292
293 # Making hyperlinked source only works if we have hscolour
294 ifneq "$(HSCOLOUR)" ""
295 CABAL_HADDOCK_FLAGS=--hyperlink-source
296 endif
297
298 $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR)):\
299 doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
300                cabal-bin ifBuildable/ifBuildable bootstrapping.conf
301         if $(IFBUILDABLE) $*; then \
302           cd $* && $(CABAL) haddock --html-location='../$$pkg' \
303                                     $(CABAL_HADDOCK_FLAGS); \
304         fi
305 ifneq "$(HSCOLOUR)" ""
306 # We use */src rather than $*/src due to the $(INTEGER_LIBRARY)/integer
307 # mismatch
308         if $(IFBUILDABLE) $*; then cp hscolour.css $*/dist/doc/html/*/src/; fi
309 endif
310
311 .PHONY: distclean clean clean.library.%
312
313 distclean: clean
314
315 clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR))
316         -cd filepath && $(CABAL) clean --distpref=dist-bootstrapping
317         -cd Cabal    && $(CABAL) clean --distpref=dist-bootstrapping
318         -cd hpc      && $(CABAL) clean --distpref=dist-bootstrapping
319         $(RM) -rf bootstrapping/*
320         $(RM) -f bootstrapping.conf     bootstrapping.conf.old
321         $(RM) -f bootstrapping.conf.tmp bootstrapping.conf.tmp.old
322         $(RM) -f cabal-bin cabal-bin.exe
323         $(RM) -rf ifBuildable
324         $(RM) -f libraries.txt index.html doc-index.html doc-index*.html
325         $(RM) -f haddock* *.gif
326
327 distclean:
328         $(RM) $(foreach lib, $(SUBDIRS), $(lib)/.depend $(lib)/.depend.bak)
329
330 $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR)): \
331 clean.library.%:
332         $(RM) -f stamp/configure.library.*.$* $*/unbuildable
333         -cd $* && $(CABAL) clean
334         $(RM) -f $*/Setup $*/Setup.exe $*/Setup.hi $*/Setup.o
335         $(RM) $*/GNUmakefile $*/Makefile.local
336 endif
337
338 # -----------------------------------------------------------------------------
339
340 .PHONY: install install-docs install.library.%
341
342 install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
343 ifeq "$(HADDOCK_DOCS)" "YES"
344         $(INSTALL_DIR)                                                     $(DESTDIR)$(html_installed_root)
345         $(INSTALL_DATA)   index.html doc-index*.html                       $(DESTDIR)$(html_installed_root)
346         $(INSTALL_SCRIPT) gen_contents_index                               $(DESTDIR)$(html_installed_root)
347         # Hacks:
348         $(INSTALL_DATA)   base/dist/doc/html/*/*.css $(DESTDIR)$(html_installed_root)
349         $(INSTALL_DATA)   base/dist/doc/html/*/*.js $(DESTDIR)$(html_installed_root)
350         $(INSTALL_DATA)   base/dist/doc/html/*/*.gif $(DESTDIR)$(html_installed_root)
351 endif
352
353 # Cabal doesn't let us ask to install docs only, so do nothing here
354 install-docs:
355         @:
356
357 # Ideally this would depend on a stamp/build.library.%, but if it does
358 # then we can't change the libraries and then just rerun make.
359 # Thus if you install without building then it will just break.
360
361 # prefix and (on Windows) htmldir use $topdir when configuring, so we
362 # need to tell installPackage the real path to use when installing.
363
364 # We also need to pass all the other directories in, as they can be
365 # overridden when installing a bindist.
366
367 $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)): \
368 install.library.%: ifBuildable/ifBuildable
369         if $(IFBUILDABLE) $*; then \
370           cd $* && \
371           $(FPTOOLS_TOP_ABS)/utils/installPackage/install-inplace/bin/installPackage install '$(GHC_PKG_PROG)' '$(DESTDIR)$(libdir)/package.conf' '$(DESTDIR)' '$(prefix)' '$(iprefix)' '$(ibindir)' '$(ilibdir)' '$(ilibexecdir)' '$(idynlibdir)' '$(idatadir)' '$(idocdir)' '$(ihtmldir)' '$(ihaddockdir)' ; \
372         fi
373
374 .PHONY: binary-dist binary-dist.library.%
375
376 BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries
377
378 binary-dist: $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR))
379         mkdir                               $(BIN_DIST_LIBDIR)/ifBuildable
380         cp        ifBuildable/ifBuildable       $(BIN_DIST_LIBDIR)/ifBuildable
381         cp    Makefile                      $(BIN_DIST_LIBDIR)
382 ifeq "$(HADDOCK_DOCS)" "YES"
383         cp    gen_contents_index            $(BIN_DIST_LIBDIR)
384         cp    index.html                    $(BIN_DIST_LIBDIR)
385         cp    doc-index*.html               $(BIN_DIST_LIBDIR)
386 endif
387         cp -pR stamp                         $(BIN_DIST_LIBDIR)
388
389 $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)): \
390 binary-dist.library.%:
391         if $(IFBUILDABLE) $*; then \
392           $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*; \
393           cd $* && \
394           cp    $*.cabal      $(BIN_DIST_LIBDIR)/$* && \
395           cp    LICENSE       $(BIN_DIST_LIBDIR)/$* && \
396           cp -R dist          $(BIN_DIST_LIBDIR)/$* && \
397           $(FIND) . -name "*.buildinfo" -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
398           $(FIND) . -name unbuildable -exec cp {} $(BIN_DIST_LIBDIR)/$* \; && \
399           (cp -RL include      $(BIN_DIST_LIBDIR)/$* || true) && \
400           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
401              \( -name "*_split" -o -name "autogen" \) | xargs rm -rf && \
402           $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
403              \( \( -name "*.o" -o -name "*.p_o" \) -a ! -name "HS*" \) \
404              -exec rm {} \; ; \
405         fi
406
407 # Ignore some doc targets that we don't support
408 # The root recurses into us when these targets are made
409 .PHONY: html-no-chunks chm HxS fo dvi ps pdf
410 html-no-chunks chm HxS fo dvi ps pdf:
411         @:
412