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