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