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