Fix Trac #3012: allow more free-wheeling in standalone deriving
[ghc-hetmet.git] / ghc.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # ToDo List.
14 #
15 #   * finish installation
16 #     * other documentation
17 #     * create doc index and contents
18 #     * Windows: should we have ghc-pkg-<version>?
19 #     * should we be stripping things?
20 #     * install libgmp.a, gmp.h
21 #   * need to fix Cabal for new Windows layout, see
22 #     Distribution/Simple/GHC.configureToolchain.
23 #   * remove old Makefiles, add new stubs for building in subdirs
24 #     * docs/Makefile
25 #     * docs/docbook-cheat-sheet/Makefile
26 #     * docs/ext-core/Makefile
27 #     * docs/man/Makefile
28 #     * docs/storage-mgmt/Makefile
29 #     * docs/vh/Makefile
30 #     * rts/dotnet/Makefile
31 #     * utils/Makefile
32 #   * GhcProfiled
33 #   * optionally install stage3?
34 #   * shared libraries, way dyn
35 #   * add Makefiles for the rest of the utils/ programs that aren't built
36 #     by default (need to exclude them from 'make all' too)
37 #
38 # Tickets we can now close, or fix and close:
39 #
40 #   * 1693 make distclean
41 #   * 3173 make install with DESTDIR
42
43 # Possible cleanups:
44 #
45 #   * per-source-file dependencies instead of one .depend file?
46 #   * eliminate undefined variables, and use --warn-undefined-variables?
47 #   * perhaps we should make all the output dirs in the .depend rule, to
48 #     avoid all these mkdirhier calls?
49 #   * put outputs from different ways in different subdirs of distdir/build,
50 #     then we don't have to use -osuf/-hisuf.  We would have to install
51 #     them in different places too, so we'd need ghc-pkg support for packages
52 #     of different ways.
53 #   * make PACKAGES generated by configure or sh boot?
54 #   * we should use a directory of package.conf files rather than a single
55 #     file for the inplace package database, so that we can express
56 #     dependencies more accurately.  Otherwise it's possible to get into
57 #     a state where the package database is out of date, and the build
58 #     system doesn't know.
59
60 # Approximate build order.
61 #
62 # The actual build order is defined by dependencies, and the phase
63 # ordering used to ensure correct ordering of makefile-generation; see
64 #    http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
65 #
66 #     * With bootstrapping compiler:
67 #           o Build utils/ghc-cabal
68 #           o Build utils/ghc-pkg
69 #           o Build utils/hsc2hs
70 #     * For each package:
71 #           o configure, generate package-data.mk and inplace-pkg-info
72 #           o register each package into inplace/lib/package.conf
73 #     * build libffi
74 #     * With bootstrapping compiler:
75 #           o Build libraries/{filepath,hpc,extensible-exceptions,Cabal}
76 #           o Build compiler (stage 1)
77 #     * With stage 1:
78 #           o Build libraries/*
79 #           o Build rts
80 #           o Build utils/* (except haddock)
81 #           o Build compiler (stage 2)
82 #     * With stage 2:
83 #           o Build utils/haddock
84 #           o Build compiler (stage 3) (optional)
85 #     * With haddock:
86 #           o libraries/*
87 #           o compiler
88
89 .PHONY: default all haddock
90
91 default : all
92
93 # Just bring makefiles up to date:
94 .PHONY: just-makefiles
95 just-makefiles:
96         @:
97
98 # -----------------------------------------------------------------------------
99 # Misc GNU make utils
100
101 nothing=
102 space=$(nothing) $(nothing)
103 comma=,
104
105 # Cancel all suffix rules.  Ideally we'd like to have 'make -r' turned on
106 # by default, because that disables all the implicit rules, but there doesn't
107 # seem to be a good way to do that.  This turns off all the old-style suffix
108 # rules, which does half the job and speeds up make quite a bit:
109 .SUFFIXES:
110
111 # -----------------------------------------------------------------------------
112 #                       Makefile debugging
113 # to see the effective value used for a Makefile variable, do
114 #  make show VALUE=MY_VALUE
115 #
116
117 show:
118         @echo '$(VALUE)="$($(VALUE))"'
119
120 # -----------------------------------------------------------------------------
121 # Include subsidiary build-system bits
122
123 include mk/tree.mk
124
125 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
126 include mk/config.mk
127 ifeq "$(ProjectVersion)" ""
128 $(error Please run ./configure first)
129 endif
130 endif
131
132 # (Optional) build-specific configuration
133 include mk/custom-settings.mk
134
135 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
136 ifeq "$(GhcLibWays)" ""
137 $(error $$(GhcLibWays) is empty, it must contain at least one way)
138 endif
139 endif
140
141 # -----------------------------------------------------------------------------
142 # Macros for standard targets
143
144 include rules/all-target.mk
145 include rules/clean-target.mk
146
147 # -----------------------------------------------------------------------------
148 # The inplace tree
149
150 $(eval $(call clean-target,inplace,,inplace))
151
152 # -----------------------------------------------------------------------------
153 # Whether to build dependencies or not
154
155 # When we're just doing 'make clean' or 'make show', then we don't need
156 # to build dependencies.
157
158 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
159 NO_INCLUDE_DEPS = YES
160 NO_INCLUDE_PKGDATA = YES
161 endif
162 ifneq "$(findstring bootstrapping-files,$(MAKECMDGOALS))" ""
163 NO_INCLUDE_DEPS = YES
164 NO_INCLUDE_PKGDATA = YES
165 endif
166 ifeq "$(findstring show,$(MAKECMDGOALS))" "show"
167 NO_INCLUDE_DEPS = YES
168 # We want package-data.mk for show
169 endif
170
171 # We don't haddock base3-compat, as it has the same package name as base
172 libraries/base3-compat_dist-install_DO_HADDOCK = NO
173
174 # We don't haddock the bootstrapping libraries
175 libraries/hpc_dist-boot_DO_HADDOCK = NO
176 libraries/Cabal_dist-boot_DO_HADDOCK = NO
177 libraries/extensible-exceptions_dist-boot_DO_HADDOCK = NO
178 libraries/filepath_dist-boot_DO_HADDOCK = NO
179
180 # -----------------------------------------------------------------------------
181 # Ways
182
183 include rules/way-prelims.mk
184
185 $(foreach way,$(ALL_WAYS),\
186   $(eval $(call way-prelims,$(way))))
187
188 # -----------------------------------------------------------------------------
189 # Compilation Flags
190
191 include rules/distdir-opts.mk
192 include rules/distdir-way-opts.mk
193
194 # -----------------------------------------------------------------------------
195 # Finding source files and object files
196
197 include rules/hs-sources.mk
198 include rules/c-sources.mk
199 include rules/includes-sources.mk
200 include rules/hs-objs.mk
201 include rules/c-objs.mk
202 include rules/cmm-objs.mk
203
204 # -----------------------------------------------------------------------------
205 # Suffix rules
206
207 # Suffix rules cause "make clean" to fail on Windows (trac #3233)
208 # so we don't make any when cleaning.
209 ifneq "$(CLEANING)" "YES"
210
211 include rules/hs-suffix-rules-srcdir.mk
212 include rules/hs-suffix-rules.mk
213
214 # -----------------------------------------------------------------------------
215 # Suffix rules for .hi files
216
217 include rules/hi-rule.mk
218
219 $(foreach way,$(ALL_WAYS),\
220   $(eval $(call hi-rule,$(way))))
221
222 #-----------------------------------------------------------------------------
223 # C-related suffix rules
224
225 include rules/c-suffix-rules.mk
226
227 #-----------------------------------------------------------------------------
228 # CMM-related suffix rules
229
230 include rules/cmm-suffix-rules.mk
231
232 endif
233
234 # -----------------------------------------------------------------------------
235 # Building package-data.mk files from .cabal files
236
237 include rules/package-config.mk
238
239 # -----------------------------------------------------------------------------
240 # Building dependencies
241
242 include rules/build-dependencies.mk
243
244 # -----------------------------------------------------------------------------
245 # Build package-data.mk files
246
247 include rules/build-package-data.mk
248
249 # -----------------------------------------------------------------------------
250 # Build and install a program
251
252 include rules/build-prog.mk
253 include rules/shell-wrapper.mk
254
255 # -----------------------------------------------------------------------------
256 # Build a perl script
257
258 include rules/build-perl.mk
259
260 # -----------------------------------------------------------------------------
261 # Build a package
262
263 include rules/build-package.mk
264 include rules/build-package-way.mk
265 include rules/haddock.mk
266
267 # -----------------------------------------------------------------------------
268 # Registering hand-written package descriptions (used in libffi and rts)
269
270 include rules/manual-package-config.mk
271
272 # -----------------------------------------------------------------------------
273 # Docs
274
275 include rules/docbook.mk
276
277 # -----------------------------------------------------------------------------
278 # Making bindists
279
280 include rules/bindist.mk
281
282 # -----------------------------------------------------------------------------
283 # Building libraries
284
285 define addPackage # args: $1 = package, $2 = condition
286     ifneq "$2" ""
287         ifeq "$$(CLEANING)" "YES"
288             PACKAGES += $1
289         else
290             ifeq $2
291                 PACKAGES += $1
292             endif
293         endif
294     else
295         PACKAGES += $1
296     endif
297 endef
298
299 $(eval $(call addPackage,ghc-prim))
300 $(eval $(call addPackage,$(INTEGER_LIBRARY)))
301 $(eval $(call addPackage,base))
302 $(eval $(call addPackage,filepath))
303 $(eval $(call addPackage,array))
304 $(eval $(call addPackage,bytestring))
305 $(eval $(call addPackage,containers))
306
307 $(eval $(call addPackage,Win32,($$(Windows),YES)))
308 $(eval $(call addPackage,unix,($$(Windows),NO)))
309
310 $(eval $(call addPackage,old-locale))
311 $(eval $(call addPackage,old-time))
312 $(eval $(call addPackage,time))
313 $(eval $(call addPackage,directory))
314 $(eval $(call addPackage,process))
315 $(eval $(call addPackage,random))
316 $(eval $(call addPackage,extensible-exceptions))
317 $(eval $(call addPackage,haskell98))
318 $(eval $(call addPackage,hpc))
319 $(eval $(call addPackage,pretty))
320 $(eval $(call addPackage,syb))
321 $(eval $(call addPackage,template-haskell))
322 $(eval $(call addPackage,base3-compat))
323 $(eval $(call addPackage,Cabal))
324 $(eval $(call addPackage,mtl))
325 $(eval $(call addPackage,utf8-string))
326
327 $(eval $(call addPackage,terminfo,($$(Windows),NO)))
328
329 $(eval $(call addPackage,haskeline))
330
331 ifneq "$(BootingFromHc)" "YES"
332 PACKAGES_STAGE2 += \
333         dph/dph-base \
334         dph/dph-prim-interface \
335         dph/dph-prim-seq \
336         dph/dph-prim-par \
337         dph/dph-seq \
338         dph/dph-par
339 endif
340
341 BOOT_PKGS = Cabal hpc extensible-exceptions
342
343 # The actual .a and .so/.dll files: needed for dependencies.
344 ALL_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
345 ifeq "$(BuildSharedLibs)" "YES"
346 ALL_STAGE1_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
347 endif
348 BOOT_LIBS = $(foreach lib,$(BOOT_PKGS),$(libraries/$(lib)_dist-boot_v_LIB))
349
350 OTHER_LIBS = libffi/libHSffi$(v_libsuf) libffi/HSffi.o
351 ifeq "$(BuildSharedLibs)" "YES"
352 OTHER_LIBS  += libffi/libHSffi$(dyn_libsuf)
353 endif
354
355 # We cannot run ghc-cabal to configure a package until we have
356 # configured and registered all of its dependencies.  So the following
357 # hack forces all the configure steps to happen in exactly the order
358 # given in the PACKAGES variable above.  Ideally we should use the
359 # correct dependencies here to allow more parallelism, but we don't
360 # know the dependencies until we've generated the pacakge-data.mk
361 # files.
362 define fixed_pkg_dep
363 libraries/$1/$2/package-data.mk : $$(GHC_PKG_INPLACE) $$(if $$(fixed_pkg_prev),libraries/$$(fixed_pkg_prev)/$2/package-data.mk)
364 fixed_pkg_prev:=$1
365 endef
366
367 ifneq "$(BINDIST)" "YES"
368 fixed_pkg_prev=
369 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
370
371 # We assume that the stage2 compiler depends on all the libraries, so
372 # they all get added to the package database before we try to configure
373 # it
374 compiler/stage2/package-data.mk: $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),libraries/$(pkg)/dist-install/package-data.mk)
375 ghc/stage1/package-data.mk: compiler/stage1/package-data.mk
376 ghc/stage2/package-data.mk: compiler/stage2/package-data.mk
377 # haddock depends on ghc and some libraries, but depending on GHC's
378 # package-data.mk is sufficient, as that in turn depends on all the
379 # libraries
380 utils/haddock/dist/package-data.mk: compiler/stage2/package-data.mk
381
382 utils/hsc2hs/dist-install/package-data.mk: compiler/stage2/package-data.mk
383
384 # add the final two package.conf dependencies: ghc-prim depends on RTS,
385 # and RTS depends on libffi.
386 libraries/ghc-prim/dist-install/package-data.mk : rts/package.conf.inplace
387 rts/package.conf.inplace : libffi/package.conf.inplace
388 endif
389
390 # -----------------------------------------------------------------------------
391 # Special magic for the ghc-prim package
392
393 # We want the ghc-prim package to include the GHC.Prim module when it
394 # is registered, but not when it is built, because GHC.Prim is not a
395 # real source module, it is built-in to GHC.  The old build system did
396 # this using Setup.hs, but we can't do that here, so we have a flag to
397 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
398 # remains compatible with the old build system for the time being).
399 # GHC.Prim module in the ghc-prim package with a flag:
400 #
401 libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
402
403 # And then we strip it out again before building the package:
404 define libraries/ghc-prim_PACKAGE_MAGIC
405 libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
406 endef
407
408 PRIMOPS_TXT = $(GHC_COMPILER_DIR)/prelude/primops.txt
409
410 libraries/ghc-prim/dist-install/build/GHC/PrimopWrappers.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT)
411         "$(MKDIRHIER)" $(dir $@)
412         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers <$(PRIMOPS_TXT) >$@
413
414 libraries/ghc-prim/GHC/Prim.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT)
415         "$(GENPRIMOP_INPLACE)" --make-haskell-source <$(PRIMOPS_TXT) >$@
416
417
418 # -----------------------------------------------------------------------------
419 # Include build instructions from all subdirs
420
421 # For the rationale behind the build phases, see
422 #   http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
423
424 # Setting foo_dist_DISABLE=YES means "in directory foo, for build
425 # "dist", just read the package-data.mk file, do not build anything".
426
427 # We carefully engineer things so that we can build the
428 # package-data.mk files early on: they depend only on a few tools also
429 # built early.  Having got the package-data.mk files built, we can
430 # restart make with up-to-date information about all the packages
431 # (this is phase 0).  The remaining problem is the .depend files:
432 #
433 #   - .depend files in libraries need the stage 1 compiler to build
434 #   - ghc/stage1/.depend needs compiler/stage1 built
435 #   - compiler/stage1/.depend needs the bootstrap libs built
436 #
437 # GHC 6.11+ can build a .depend file without having built the
438 # dependencies of the package, but we can't rely on the bootstrapping
439 # compiler being able to do this, which is why we have to separate the
440 # three phases above.
441
442 # So this is the final ordering:
443
444 # Phase 0 : all package-data.mk files
445 #           (requires ghc-cabal, ghc-pkg, mkdirhier, dummy-ghc etc.)
446 # Phase 1 : .depend files for bootstrap libs
447 #           (requires hsc2hs)
448 # Phase 2 : compiler/stage1/.depend
449 #           (requires bootstrap libs and genprimopcode)
450 # Phase 3 : ghc/stage1/.depend
451 #           (requires compiler/stage1)
452 #
453 # The rest : libraries/*/dist-install, compiler/stage2, ghc/stage2
454
455 BUILD_DIRS =
456
457 ifneq "$(BINDIST)" "YES"
458 BUILD_DIRS += \
459    $(GHC_MKDEPENDC_DIR) \
460    $(GHC_MKDIRHIER_DIR)
461 endif
462
463 BUILD_DIRS += \
464    docs/users_guide \
465    libraries/Cabal/doc \
466    $(GHC_UNLIT_DIR) \
467    $(GHC_HP2PS_DIR)
468
469 ifneq "$(GhcUnregisterised)" "YES"
470 BUILD_DIRS += \
471    $(GHC_MANGLER_DIR) \
472    $(GHC_SPLIT_DIR)
473 endif
474
475 ifneq "$(BINDIST)" "YES"
476 BUILD_DIRS += \
477    $(GHC_GENPRIMOP_DIR)
478 endif
479
480 BUILD_DIRS += \
481    driver \
482    driver/ghci \
483    driver/ghc \
484    libffi \
485    includes \
486    rts
487
488 ifneq "$(BINDIST)" "YES"
489 BUILD_DIRS += \
490    $(GHC_CABAL_DIR) \
491    $(GHC_GENAPPLY_DIR)
492 endif
493
494 BUILD_DIRS += \
495    utils/haddock \
496    utils/haddock/doc
497
498 ifneq "$(CLEANING)" "YES"
499 BUILD_DIRS += \
500    $(patsubst %, libraries/%, $(PACKAGES) $(PACKAGES_STAGE2))
501 ifneq "$(BootingFromHc)" "YES"
502 BUILD_DIRS += \
503    libraries/dph
504 endif
505 endif
506
507 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
508 BUILD_DIRS += libraries/integer-gmp/gmp
509 endif
510
511 BUILD_DIRS += \
512    compiler \
513    $(GHC_HSC2HS_DIR) \
514    $(GHC_PKG_DIR) \
515    utils/hpc \
516    utils/runghc \
517    ghc
518 ifeq "$(Windows)" "YES"
519 BUILD_DIRS += \
520    $(GHC_TOUCHY_DIR)
521 endif
522
523 # XXX libraries/% must come before any programs built with stage1, see
524 # Note [lib-depends].
525
526 ifeq "$(phase)" "0"
527 $(foreach lib,$(BOOT_PKGS),$(eval \
528   libraries/$(lib)_dist-boot_DISABLE = YES))
529 endif
530
531 ifneq "$(findstring $(phase),0 1)" ""
532 # We can build deps for compiler/stage1 in phase 2
533 compiler_stage1_DISABLE = YES
534 endif
535
536 ifneq "$(findstring $(phase),0 1 2)" ""
537 ghc_stage1_DISABLE = YES
538 endif
539
540 ifneq "$(CLEANING)" "YES"
541 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
542 libraries/base_dist-install_CONFIGURE_OPTS += --flags=-integer-simple
543 else
544     ifeq "$(INTEGER_LIBRARY)" "integer-simple"
545         libraries/base_dist-install_CONFIGURE_OPTS += --flags=integer-simple
546     else
547 $(error Unknown integer library: $(INTEGER_LIBRARY))
548     endif
549 endif
550 endif
551
552 ifneq "$(findstring $(phase),0 1 2 3)" ""
553 # In phases 0-3, we disable stage2-3, the full libraries and haddock
554 utils/haddock_dist_DISABLE = YES
555 utils/runghc_dist_DISABLE = YES
556 utils/hpc_dist_DISABLE = YES
557 utils/hsc2hs_dist-install_DISABLE = YES
558 utils/ghc-pkg_dist-install_DISABLE = YES
559 compiler_stage2_DISABLE = YES
560 compiler_stage3_DISABLE = YES
561 ghc_stage2_DISABLE = YES
562 ghc_stage3_DISABLE = YES
563 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
564   libraries/$(lib)_dist-install_DISABLE = YES))
565 endif
566
567 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
568
569 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
570 GhcLibHcOpts += -fno-warn-deprecated-flags
571 ifeq "$(ghc_ge_609)" "YES"
572 GhcBootLibHcOpts += -fno-warn-deprecated-flags
573 endif
574
575 # Add $(GhcLibHcOpts) to all library builds
576 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
577
578 # XXX Hack; remove this
579 $(foreach pkg,$(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += -Wwarn))
580
581 # XXX we configure packages with the bootstrapping compiler (for
582 # dependency reasons, see the phase ordering), which doesn't
583 # necessarily support all the extensions we need, and Cabal filters
584 # out the ones it thinks aren't supported.
585 libraries/base3-compat_dist-install_HC_OPTS += -XPackageImports
586
587 # A useful pseudo-target
588 .PHONY: stage1_libs
589 stage1_libs : $(ALL_STAGE1_LIBS)
590
591 # -----------------------------------------------------------------------------
592 # Bootstrapping libraries
593
594 # We need to build a few libraries with the installed GHC, since GHC itself
595 # and some of the tools depend on them:
596
597 ifneq "$(BINDIST)" "YES"
598
599 ifneq "$(BOOTSTRAPPING_CONF)" ""
600 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
601 $(shell echo "[]" >$(BOOTSTRAPPING_CONF))
602 endif
603 endif
604
605 $(eval $(call clean-target,$(BOOTSTRAPPING_CONF),,$(BOOTSTRAPPING_CONF)))
606
607 # These three libraries do not depend on each other, so we can build
608 # them straight off:
609
610 $(eval $(call build-package,libraries/hpc,dist-boot,0))
611 $(eval $(call build-package,libraries/extensible-exceptions,dist-boot,0))
612 $(eval $(call build-package,libraries/Cabal,dist-boot,0))
613
614 # register the boot packages in strict sequence, because running
615 # multiple ghc-pkgs in parallel doesn't work (registrations may get
616 # lost).
617 fixed_pkg_prev=
618 $(foreach pkg,$(BOOT_PKGS),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
619
620 compiler/stage1/package-data.mk : \
621     libraries/Cabal/dist-boot/package-data.mk \
622     libraries/hpc/dist-boot/package-data.mk \
623     libraries/extensible-exceptions/dist-boot/package-data.mk
624
625 # These are necessary because the bootstrapping compiler may not know
626 # about cross-package dependencies:
627 $(compiler_stage1_depfile) : $(BOOT_LIBS)
628 $(ghc_stage1_depfile) : $(compiler_stage1_v_LIB)
629
630 $(foreach pkg,$(BOOT_PKGS),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
631
632 endif
633
634 # -----------------------------------------------------------------------------
635 # Creating a local mingw copy on Windows
636
637 ifeq "$(Windows)" "YES"
638
639 # directories don't work well as dependencies, hence a stamp file
640 $(INPLACE)/stamp-mingw : $(MKDIRHIER)
641         $(MKDIRHIER) $(INPLACE_MINGW)/bin
642         GCC=`type -p $(WhatGccIsCalled)`; \
643         GccDir=`dirname $$GCC`; \
644         "$(CP)" -p $$GccDir/{gcc.exe,ar.exe,as.exe,dlltool.exe,dllwrap.exe,windres.exe} $(INPLACE_MINGW)/bin; \
645         "$(CP)" -Rp $$GccDir/../include $(INPLACE_MINGW); \
646         "$(CP)" -Rp $$GccDir/../lib     $(INPLACE_MINGW); \
647         "$(CP)" -Rp $$GccDir/../libexec $(INPLACE_MINGW); \
648         "$(CP)" -Rp $$GccDir/../mingw32 $(INPLACE_MINGW)
649         touch $(INPLACE)/stamp-mingw
650
651 install : install_mingw
652 .PHONY: install_mingw
653 install_mingw : $(INPLACE_MINGW)
654         "$(CP)" -Rp $(INPLACE_MINGW) $(prefix)
655
656 $(INPLACE_LIB)/perl.exe $(INPLACE_LIB)/perl56.dll :
657         "$(CP)" $(GhcDir)../{perl.exe,perl56.dll} $(INPLACE_LIB)
658
659 endif # Windows
660
661 libraries/ghc-prim/dist-install/doc/html/ghc-prim/ghc-prim.haddock: \
662     libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs \
663     libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs
664
665 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
666                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) $(MKDIRHIER)
667         "$(MKDIRHIER)" $(dir $@)
668         "$(GENPRIMOP_INPLACE)" --make-haskell-source < $< > $@
669
670 libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs: \
671                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) $(MKDIRHIER)
672         "$(MKDIRHIER)" $(dir $@)
673         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers < $< > $@
674
675 # -----------------------------------------------------------------------------
676 # Installation
677
678 install: install_packages install_libs install_libexecs install_headers \
679          install_libexec_scripts install_bins
680
681 install_bins: $(INSTALL_BINS)
682         $(INSTALL_DIR) $(DESTDIR)$(bindir)
683         for i in $(INSTALL_BINS); do \
684                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(DESTDIR)$(bindir) ;  \
685                 if test "$(darwin_TARGET_OS)" = "1"; then \
686                    sh mk/fix_install_names.sh $(libdir) $(DESTDIR)$(bindir)/$$i ; \
687                 fi ; \
688         done
689
690 install_libs: $(INSTALL_LIBS)
691         $(INSTALL_DIR) $(DESTDIR)$(libdir)
692         for i in $(INSTALL_LIBS); do \
693                 case $$i in \
694                   *.a) \
695                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
696                     $(RANLIB) $(DESTDIR)$(libdir)/`basename $$i` ;; \
697                   *.dll) \
698                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir) ;; \
699                   *.so) \
700                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir) ;; \
701                   *.dylib) \
702                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
703                     install_name_tool -id $(DESTDIR)$(libdir)/`basename $$i` $(DESTDIR)$(libdir)/`basename $$i` ;; \
704                   *) \
705                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
706                 esac; \
707         done
708
709 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
710         "$(MKDIRHIER)" $(DESTDIR)$(libexecdir)
711         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
712                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(DESTDIR)$(libexecdir); \
713         done
714
715 install_libexecs:  $(INSTALL_LIBEXECS)
716         "$(MKDIRHIER)" $(DESTDIR)$(libexecdir)
717         for i in $(INSTALL_LIBEXECS); do \
718                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(DESTDIR)$(libexecdir); \
719         done
720
721 install_headers: $(INSTALL_HEADERS)
722         $(INSTALL_DIR) $(DESTDIR)$(headerdir)
723         for i in $(INSTALL_HEADERS); do \
724                 $(INSTALL_HEADER) $(INSTALL_OPTS) $$i $(DESTDIR)$(headerdir); \
725         done
726
727 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(libdir)/package.conf
728
729 # Install packages in the right order, so that ghc-pkg doesn't complain.
730 # Also, install ghc-pkg first.
731 ifeq "$(Windows)" "NO"
732 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(libexecdir)/ghc-pkg
733 else
734 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
735 endif
736
737 install_packages: install_libexecs
738 install_packages: libffi/package.conf.install rts/package.conf.install
739         "$(MKDIRHIER)" $(DESTDIR)$(libdir)
740         echo "[]" > $(INSTALLED_PACKAGE_CONF)
741         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf $(INSTALLED_PACKAGE_CONF) update libffi/package.conf.install
742         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf $(INSTALLED_PACKAGE_CONF) update rts/package.conf.install
743         $(foreach p, $(PACKAGES) $(PACKAGES_STAGE2),\
744             "$(GHC_CABAL_INPLACE)" install \
745                  $(INSTALLED_GHC_PKG_REAL) \
746                  $(INSTALLED_PACKAGE_CONF) \
747                  libraries/$p dist-install \
748                  '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries' &&) true
749         "$(GHC_CABAL_INPLACE)" install \
750                  $(INSTALLED_GHC_PKG_REAL) \
751                  $(INSTALLED_PACKAGE_CONF) \
752                  compiler stage2 \
753                  '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries'
754
755 # -----------------------------------------------------------------------------
756 # Binary distributions
757
758 $(eval $(call bindist,.,\
759     LICENSE \
760     configure config.sub config.guess install-sh \
761     extra-gcc-opts.in \
762     Makefile \
763     mk/config.mk.in \
764     $(INPLACE_BIN)/mkdirhier \
765     $(INPLACE_BIN)/ghc-cabal \
766     utils/ghc-pwd/ghc-pwd \
767         $(BINDIST_WRAPPERS) \
768         $(BINDIST_LIBS) \
769         $(BINDIST_HI) \
770         $(BINDIST_EXTRAS) \
771     $(INSTALL_HEADERS) \
772     $(INSTALL_LIBEXECS) \
773     $(INSTALL_LIBEXEC_SCRIPTS) \
774     $(INSTALL_BINS) \
775     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
776     $(filter-out %/project.mk,$(filter-out mk/config.mk,$(MAKEFILE_LIST))) \
777         mk/fix_install_names.sh \
778         mk/project.mk \
779         libraries/dph/LICENSE \
780  ))
781 # mk/project.mk gets an absolute path, so we manually include it in
782 # the bindist with a relative path
783
784 binary-dist:
785         "$(RM)" $(RM_OPTS) -r $(BIN_DIST_NAME)
786         mkdir $(BIN_DIST_NAME)
787         set -e; for i in LICENSE compiler ghc rts libraries utils docs libffi includes driver mk rules Makefile aclocal.m4 config.sub config.guess install-sh extra-gcc-opts.in ghc.mk inplace; do ln -s ../$$i $(BIN_DIST_NAME)/; done
788         ln -s ../distrib/configure-bin.ac $(BIN_DIST_NAME)/configure.ac
789         cd $(BIN_DIST_NAME) && autoreconf
790         "$(RM)" $(RM_OPTS) $(BIN_DIST_TAR)
791 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
792 # tree then we want to include the real file, not a symlink to it
793         "$(TAR)" hcf - -T $(BIN_DIST_LIST) | bzip2 -c > $(BIN_DIST_TAR_BZ2)
794
795 windows-binary-dist:
796         "$(RM)" $(RM_OPTS) -r $(BIN_DIST_NAME)
797         $(MAKE) prefix=$(BIN_DIST_DIR) install
798         "$(TAR)" cf - $(BIN_DIST_NAME) | bzip2 -c > $(BIN_DIST_TAR_BZ2)
799
800 windows-installer:
801         "$(ISCC)" /O. /F$(WINDOWS_INSTALLER_BASE) - < distrib/ghc.iss
802
803 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
804
805 .PHONY: publish-binary-dist
806 publish-binary-dist:
807         $(call nTimes,10,$(PublishCp) $(BIN_DIST_TAR_BZ2) $(PublishLocation)/dist)
808 ifeq "$(mingw32_TARGET_OS)" "1"
809         $(call nTimes,10,$(PublishCp) $(WINDOWS_INSTALLER) $(PublishLocation)/dist)
810 endif
811
812 # -----------------------------------------------------------------------------
813 # Source distributions
814
815 # Do it like this:
816 #
817 #       $ make
818 #       $ make sdist
819 #
820
821 # A source dist is built from a complete build tree, because we
822 # require some extra files not contained in a darcs checkout: the
823 # output from Happy and Alex, for example.
824 #
825 # The steps performed by 'make dist' are as follows:
826 #   - create a complete link-tree of the current build tree in /tmp
827 #   - run 'make distclean' on that tree
828 #   - remove a bunch of other files that we know shouldn't be in the dist
829 #   - tar up first the extralibs package, then the main source package
830
831 #
832 # Directory in which we're going to build the src dist
833 #
834 SRC_DIST_NAME=ghc-$(ProjectVersion)
835 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
836
837 #
838 # Files to include in source distributions
839 #
840 SRC_DIST_DIRS = mk rules docs distrib bindisttest libffi includes utils docs rts compiler ghc driver libraries
841 SRC_DIST_FILES += \
842         configure.ac config.guess config.sub configure \
843         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
844         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION \
845         boot boot-pkgs packages ghc.mk
846
847 SRC_DIST_TARBALL = $(SRC_DIST_NAME)-src.tar.bz2
848
849 VERSION :
850         echo $(ProjectVersion) >VERSION
851
852 sdist : VERSION
853
854 # Use:
855 #     $(call sdist_file,compiler,stage2,cmm,CmmLex,x)
856 # to copy the generated file that replaces compiler/cmm/CmmLex.x, where
857 # "stage2" is the dist dir.
858 sdist_file = \
859   if test -f $(TOP)/$1/$2/build/$4.hs; then \
860     "$(CP)" $(TOP)/$1/$2/build/$4.hs $1/$3/ ; \
861     mv $1/$3/$4.$5 $1/$3/$4.$5.source ;\
862   else \
863     echo "does not exist: $1/$2//build/$4.hs"; \
864     exit 1; \
865   fi
866
867 .PHONY: sdist-prep
868 sdist-prep :
869         "$(RM)" $(RM_OPTS) -r $(SRC_DIST_DIR)
870         "$(RM)" $(RM_OPTS) $(SRC_DIST_TARBALL)
871         mkdir $(SRC_DIST_DIR)
872         ( cd $(SRC_DIST_DIR) \
873           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(TOP)/$$i ); done \
874           && for i in $(SRC_DIST_FILES); do $(LN_S) $(TOP)/$$i .; done \
875           && $(MAKE) distclean \
876           && if test -f $(TOP)/libraries/haskell-src/dist/build/Language/Haskell/Parser.hs; then "$(CP)" $(TOP)/libraries/haskell-src/dist/build/Language/Haskell/Parser.hs libraries/haskell-src/Language/Haskell/ ; mv libraries/haskell-src/Language/Haskell/Parser.ly libraries/haskell-src/Language/Haskell/Parser.ly.source ; fi \
877           && $(call sdist_file,compiler,stage2,cmm,CmmLex,x) \
878           && $(call sdist_file,compiler,stage2,cmm,CmmParse,y) \
879           && $(call sdist_file,compiler,stage2,main,ParsePkgConf,y) \
880           && $(call sdist_file,compiler,stage2,parser,HaddockLex,x) \
881           && $(call sdist_file,compiler,stage2,parser,HaddockParse,y) \
882           && $(call sdist_file,compiler,stage2,parser,Lexer,x) \
883           && $(call sdist_file,compiler,stage2,parser,Parser,y.pp) \
884           && $(call sdist_file,compiler,stage2,parser,ParserCore,y) \
885           && $(call sdist_file,utils/hpc,dist,,HpcParser,y) \
886           && $(call sdist_file,utils/genprimopcode,dist,,Lexer,x) \
887           && $(call sdist_file,utils/genprimopcode,dist,,Parser,y) \
888           && "$(RM)" $(RM_OPTS) -r compiler/stage[123] mk/build.mk \
889           && "$(FIND)" $(SRC_DIST_DIRS) \( -name _darcs -o -name SRC -o -name "autom4te*" -o -name "*~" -o -name ".cvsignore" -o -name "\#*" -o -name ".\#*" -o -name "log" -o -name "*-SAVE" -o -name "*.orig" -o -name "*.rej" -o -name "*-darcs-backup*" \) -print | xargs "$(RM)" $(RM_OPTS) -r \
890         )
891
892 .PHONY: sdist
893 sdist : sdist-prep
894         "$(TAR)" chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
895
896 sdist-manifest : $(SRC_DIST_TARBALL)
897         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
898
899 # Upload the distribution(s)
900 # Retrying is to work around buggy firewalls that corrupt large file transfers
901 # over SSH.
902 ifneq "$(PublishLocation)" ""
903 publish-sdist :
904         $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
905 endif
906
907 ifeq "$(GhcUnregisterised)" "YES"
908 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
909 endif
910
911 # -----------------------------------------------------------------------------
912 # Cleaning
913
914 .PHONY: clean
915
916 CLEAN_FILES += utils/ghc-pwd/ghc-pwd
917 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
918 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
919 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
920 CLEAN_FILES += libraries/bootstrapping.conf
921
922 clean : clean_files clean_libraries
923
924 .PHONY: clean_files
925 clean_files :
926         "$(RM)" $(RM_OPTS) $(CLEAN_FILES)
927
928 .PHONY: clean_libraries
929 clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2))
930 clean_libraries: $(patsubst %,clean_libraries/%_dist-boot,$(BOOT_PKGS))
931
932 clean_libraries:
933         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/dist, $(PACKAGES) $(PACKAGES_STAGE2))
934         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/*.buildinfo, $(PACKAGES) $(PACKAGES_STAGE2))
935
936 # We have to define a clean target for each library manually, because the
937 # libraries/*/ghc.mk files are not included when we're cleaning.
938 ifeq "$(CLEANING)" "YES"
939 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),\
940   $(eval $(call clean-target,libraries/$(lib),dist-install,libraries/$(lib)/dist-install)))
941 endif
942
943 distclean : clean
944         "$(RM)" $(RM_OPTS) config.cache config.status config.log mk/config.h mk/stamp-h
945         "$(RM)" $(RM_OPTS) mk/config.mk mk/are-validating.mk mk/project.mk
946         "$(RM)" $(RM_OPTS) mk/config.mk.old mk/project.mk.old
947         "$(RM)" $(RM_OPTS) extra-gcc-opts docs/users_guide/ug-book.xml
948         "$(RM)" $(RM_OPTS) compiler/ghc.cabal compiler/ghc.cabal.old
949         "$(RM)" $(RM_OPTS) ghc/ghc-bin.cabal
950         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h
951         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h
952         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h
953         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h
954         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h
955
956         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.log, $(PACKAGES) $(PACKAGES_STAGE2))
957         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.status, $(PACKAGES) $(PACKAGES_STAGE2))
958         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/include/Hs*Config.h, $(PACKAGES) $(PACKAGES_STAGE2))
959         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/autom4te.cache, $(PACKAGES) $(PACKAGES_STAGE2))
960
961 maintainer-clean : distclean
962         "$(RM)" $(RM_OPTS) configure mk/config.h.in
963         "$(RM)" $(RM_OPTS) -r autom4te.cache libraries/*/autom4te.cache
964         "$(RM)" $(RM_OPTS) ghc.spec
965         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/GNUmakefile, \
966                 $(PACKAGES) $(PACKAGES_STAGE2))
967         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
968         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/configure, \
969                 $(PACKAGES) $(PACKAGES_STAGE2))
970         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h.in
971         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h.in
972         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h.in
973         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h.in
974         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h.in
975
976 .PHONY: all_libraries
977
978 .PHONY: bootstrapping-files
979 bootstrapping-files: $(OTHER_LIBS)
980 bootstrapping-files: includes/ghcautoconf.h
981 bootstrapping-files: includes/DerivedConstants.h
982 bootstrapping-files: includes/GHCConstants.h
983
984 .DELETE_ON_ERROR:
985