Require HsColour by default
[ghc-hetmet.git] / Makefile
1 ############################################################################
2 #
3 #               This is the top-level Makefile for GHC
4 #
5 # Targets: 
6 #
7 #       bootstrap (DEFAULT)
8 #               Builds GHC, then builds the libraries,
9 #               then uses this GHC ("stage 1") to build itself
10 #               ("stage 2").
11 #
12 #       bootstrap2
13 #               Same as bootstrap
14 #
15 #       bootstrap3
16 #               bootstrap2 + we build GHC one more time ("stage 3")
17 #
18 #       stage1
19 #               Just build up to stage 1
20 #
21 #       stage2
22 #               Just build stage 2 (stage 1 must be built)
23 #
24 #       stage3
25 #               Just build stage 3 (stage 2 must be built)
26 #
27 #       all
28 #               Same as bootstrap
29 #
30 #       install
31 #               Install everything, including stage 2 compiler by default
32 #               (override with stage=3, for example).
33 #
34 #       dist
35 #               Make a source dist (WARNING: runs 'make distclean' first)
36 #
37 #       binary-dist
38 #               Builds a binary distribution
39 #
40 #       framework-pkg  [MacOS only]
41 #               Builds /Library/Frameworks/GHC.framework wrapped into a Mac
42 #               installer package
43 #
44 #       framework-binary-dist  [MacOS only]
45 #               Builds GHC.framework encapsulating a binary distribution
46 #               (to give a relocatable framework)
47 #
48 #       hc-file-bundle
49 #               Builds an HC-file bundle, for bootstrapping
50 #
51 #       clean, distclean, maintainer-clean
52 #               Increasing levels of cleanliness
53 #
54 ############################################################################
55
56 TOP=.
57 include $(TOP)/mk/boilerplate.mk
58
59 #
60 # Order is important! It's e.g. necessary to descend into include/
61 # before the rest to have a config.h, etc.
62 #
63 # If we're booting from .hc files, swap the order
64 # we descend into subdirs - to boot utils must be before driver.
65 #
66 .PHONY: stage1 stage2 stage3 bootstrap bootstrap2 bootstrap3
67
68 # We can't 'make boot' in libraries until stage1 is built
69 ifeq "$(BootingFromHc)" "YES"
70 SUBDIRS_BUILD = includes compiler docs utils driver
71 else
72 SUBDIRS_BUILD = includes utils driver docs compiler libraries/Cabal/doc
73 endif
74
75 SUBDIRS = gmp libffi includes utils docs rts compiler ghc driver libraries libraries/Cabal/doc
76
77 check-all: check-packages check-tools
78
79 # Sanity check that all the boot libraries are in the tree, to catch
80 # failure to run darcs-all.
81 check-packages :
82         @ds=`grep "^[^# ][^ ]*  *[^ ][^ ]*  *[^ ][^ ]*$$" packages | sed "s/ .*//"`;\
83         for d in $$ds; do \
84           if test ! -d $$d; then \
85              echo "Looks like you're missing $$d,"; \
86              echo "maybe you haven't done './darcs-all get'?"; \
87              exit 1; \
88           fi \
89         done
90         @if test ! -f libraries/base/configure; then \
91             echo "Looks like you're missing base's configure script."; \
92             echo "Did you run 'sh boot' at the top level?"; \
93             exit 1; \
94         fi
95
96 check-tools:
97 ifeq "$(HSCOLOUR_SRCS) $(HSCOLOUR)" "YES "
98         @echo "HsColour needed but wasn't found."
99         @echo "Set HSCOLOUR_SRCS=NO if you don't want to use it"
100         exit 1
101 endif
102         @:
103
104 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
105 ifneq "$(WhatGccIsCalled)" ""
106 GCC_LIB_DEP = stamp.inplace-gcc-lib
107 endif
108 endif
109
110 stage1 : $(GCC_LIB_DEP) check-all
111         $(MAKE) -C libraries boot
112         $(MAKE) -C gmp       all
113         $(MAKE) -C utils/mkdependC boot
114         $(MAKE) -C utils with-bootstrapping-compiler
115         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
116         for i in $(SUBDIRS_BUILD); do \
117           echo "------------------------------------------------------------------------"; \
118           echo "== $(MAKE) boot $(MFLAGS);"; \
119           echo " in $(shell pwd)/$$i"; \
120           echo "------------------------------------------------------------------------"; \
121           $(MAKE) --no-print-directory -C $$i $(MFLAGS) boot; \
122           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
123         done; \
124         for i in $(SUBDIRS_BUILD); do \
125           echo "------------------------------------------------------------------------"; \
126           echo "== $(MAKE) all $(MFLAGS);"; \
127           echo " in $(shell pwd)/$$i"; \
128           echo "------------------------------------------------------------------------"; \
129           $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \
130           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
131         done
132         $(MAKE) -C libffi    all
133         $(MAKE) -C rts boot
134         $(MAKE) -C rts
135         $(MAKE) -C libraries all
136
137 # When making distributions (i.e., whether with binary-dist or using the 
138 # vanilla install target to create an installer package), we can have problems
139 # if some things (e.g. ghc-pkg) are compiled with the bootstrapping compiler 
140 # and some (e.g. the stage 2 compiler) with the stage1 compiler. See #1860 for
141 # an example.  Thus, we explicitly build a second version with the stage 1 
142 # compiler of all utils that get installed and of all extra support binaries
143 # includes in binary dists.
144 stage2 : check-all
145         $(MAKE) -C compiler stage=2 boot
146         $(MAKE) -C compiler stage=2
147         $(MAKE) -C utils with-stage-2
148 ifeq "$(HADDOCK_DOCS)" "YES"
149         $(MAKE) -C libraries doc
150         $(MAKE) -C compiler  doc stage=2
151 endif
152
153 stage3 : check-all
154         $(MAKE) -C compiler stage=3 boot
155         $(MAKE) -C compiler stage=3
156
157 bootstrap  : bootstrap2
158
159 bootstrap2 : stage1
160         $(MAKE) stage2
161
162 bootstrap3 : bootstrap2
163         $(MAKE) stage3
164
165 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
166 ifneq "$(WhatGccIsCalled)" ""
167 all :: stamp.inplace-gcc-lib
168
169 .PHONY: stamp.inplace-gcc-lib
170
171 # This is a hack to make Cabal able to find ld when we run tests with
172 # the inplace ghc. We should probably install all the gcc stuff in our
173 # tree somewhere, and then have install copy it from there rather than
174 # from the filesystem.
175 stamp.inplace-gcc-lib:
176         $(RM) -r ghc/gcc-lib
177         mkdir ghc/gcc-lib
178         cp $(LD) ghc/gcc-lib
179         touch $@
180
181 clean ::
182         $(RM) -r ghc/gcc-lib
183         $(RM) -f inplace-gcc-lib
184 endif
185 endif
186
187 all :: bootstrap
188
189 # -----------------------------------------------------------------------------
190 # Installing
191
192 # We want to install the stage 2 bootstrapped compiler by default, but we let
193 # the user override this by saying 'make install stage=1', for example.
194 ifeq "$(stage)" ""
195 INSTALL_STAGE = stage=2
196 else
197 INSTALL_STAGE =
198 endif
199
200 install-strip:
201         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
202
203 # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too
204 install :: check-packages
205         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
206         for i in $(SUBDIRS); do \
207           echo "------------------------------------------------------------------------"; \
208           echo "== $(MAKE) $@ $(MFLAGS);"; \
209           echo " in $(shell pwd)/$$i"; \
210           echo "------------------------------------------------------------------------"; \
211           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
212           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
213         done
214
215 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
216 # These files need to be in the InstallShield
217 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
218 # in the top-level directory of the distribution
219 INSTALL_DATAS += ANNOUNCE LICENSE README
220 endif
221
222 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
223 # and the perl interpreter and dll into the GHC prefix directory.
224 # Gcc and Perl source locations derived from configuration data.
225 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
226 ifneq "$(WhatGccIsCalled)" ""
227 install ::
228         -mkdir $(prefix)/gcc-lib
229         -mkdir $(prefix)/include
230         -mkdir $(prefix)/include/mingw
231         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
232         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
233         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
234         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
235         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
236         -cp $(GccDir)gcc.exe $(prefix)
237         -cp $(GccDir)as.exe $(prefix)/gcc-lib
238         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
239         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
240         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
241         -cp $(GhcDir)../perl.exe $(prefix)
242         -cp $(GhcDir)../perl56.dll $(prefix)
243 endif
244 endif
245
246 # Install gcc-extra-opts
247 install ::
248         $(INSTALL_DIR) $(DESTDIR)$(libdir)
249         $(INSTALL_DATA) $(INSTALL_OPTS) extra-gcc-opts $(DESTDIR)$(libdir)
250
251 install-docs ::
252         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
253         for i in $(SUBDIRS); do \
254           echo "------------------------------------------------------------------------"; \
255           echo "== $(MAKE) $@ $(MFLAGS);"; \
256           echo " in $(shell pwd)/$$i"; \
257           echo "------------------------------------------------------------------------"; \
258           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
259           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
260         done
261
262 # -----------------------------------------------------------------------------
263 # Making a binary distribution
264 #
265 # `dist' `binary-dist'
266 #      Create a distribution tar file for this program. The tar file
267 #      should be set up so that the file names in the tar file start with
268 #      a subdirectory name which is the name of the package it is a
269 #      distribution for. This name can include the version number.
270 #
271 #      For example, the distribution tar file of GCC version 1.40 unpacks
272 #      into a subdirectory named `gcc-1.40'.
273
274 #      The easiest way to do this is to create a subdirectory
275 #      appropriately named, use ln or cp to install the proper files in
276 #      it, and then tar that subdirectory.
277
278 #      The dist target should explicitly depend on all non-source files
279 #      that are in the distribution, to make sure they are up to date in
280 #      the distribution. See Making Releases.
281 #
282 #       binary-dist is a GHC addition for binary distributions
283
284
285 binary-dist::
286         -rm -rf $(BIN_DIST_DIR)
287         -$(RM) $(BIN_DIST_TAR_BZ2)
288
289 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
290
291 binary-dist::
292         $(MAKE) prefix=$(BIN_DIST_DIR) install
293         $(MAKE) prefix=$(BIN_DIST_DIR) install-docs
294
295 binary-dist::
296         cd $(BIN_DIST_DIR) && $(SHELL) ../distrib/prep-bin-dist-mingw
297
298 binary-dist::
299         $(MKDIRHIER) $(BIN_DIST_DIR)/icons
300         cp distrib/hsicon.ico $(BIN_DIST_DIR)/icons
301
302 # Tar up the distribution and build a manifest
303 binary-dist :: tar-binary-dist
304
305 .PHONY: tar-binary-dist
306 tar-binary-dist:
307         ( cd $(BIN_DIST_TOPDIR_ABS); $(TAR) cf - $(BIN_DIST_NAME) | bzip2 > $(BIN_DIST_TAR_BZ2) )
308         ( cd $(BIN_DIST_TOPDIR_ABS); bunzip2 -c $(BIN_DIST_TAR_BZ2) | $(TAR) tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >$(FPTOOLS_TOP_ABS)/bin-manifest-$(ProjectVersion) )
309
310 else
311
312 .PHONY: binary-dist
313
314 BIN_DIST_VARFILE=$(BIN_DIST_PREP)/Makefile-vars.in
315
316 WHERE_AM_I = $(BIN_DIST_NAME)
317
318 binary-dist::
319 # For the most part we will be putting filenames in $(BIN_DIST_LIST),
320 # and telling tar to tar all of those files up. So to start with we
321 # remove $(BIN_DIST_LIST) so that we can start with an empty slate
322         $(RM) -f $(BIN_DIST_LIST)
323 # Now we add a few files from mk/ to $(BIN_DIST_LIST)
324         echo $(WHERE_AM_I)/mk/package.mk     >> $(BIN_DIST_LIST)
325         echo $(WHERE_AM_I)/mk/install.mk     >> $(BIN_DIST_LIST)
326         echo $(WHERE_AM_I)/mk/recurse.mk     >> $(BIN_DIST_LIST)
327         echo $(WHERE_AM_I)/mk/cabal.mk       >> $(BIN_DIST_LIST)
328         echo $(WHERE_AM_I)/mk/cabal-flags.mk >> $(BIN_DIST_LIST)
329         echo $(WHERE_AM_I)/mk/fptools.css    >> $(BIN_DIST_LIST)
330         echo $(WHERE_AM_I)/ANNOUNCE          >> $(BIN_DIST_LIST)
331         echo $(WHERE_AM_I)/LICENSE           >> $(BIN_DIST_LIST)
332         echo $(WHERE_AM_I)/install-sh        >> $(BIN_DIST_LIST)
333         echo $(WHERE_AM_I)/extra-gcc-opts.in >> $(BIN_DIST_LIST)
334         echo $(WHERE_AM_I)/config.guess      >> $(BIN_DIST_LIST)
335         echo $(WHERE_AM_I)/config.sub        >> $(BIN_DIST_LIST)
336 # Now we recurse into various subdirectories and tell them to add and
337 # files that they want into $(BIN_DIST_LIST)
338 # XXX Ug, this duplication of "-C foo WHERE_AM_I=.../foo" isn't nice.
339         $(MAKE) -C gmp                 binary-dist WHERE_AM_I=$(WHERE_AM_I)/gmp
340         $(MAKE) -C includes            binary-dist WHERE_AM_I=$(WHERE_AM_I)/includes
341         $(MAKE) -C compiler            binary-dist WHERE_AM_I=$(WHERE_AM_I)/compiler $(INSTALL_STAGE)
342         $(MAKE) -C ghc                 binary-dist WHERE_AM_I=$(WHERE_AM_I)/ghc      $(INSTALL_STAGE)
343         $(MAKE) -C rts                 binary-dist WHERE_AM_I=$(WHERE_AM_I)/rts
344         $(MAKE) -C driver              binary-dist WHERE_AM_I=$(WHERE_AM_I)/driver
345         $(MAKE) -C utils               binary-dist WHERE_AM_I=$(WHERE_AM_I)/utils
346         $(MAKE) -C docs                binary-dist WHERE_AM_I=$(WHERE_AM_I)/docs
347         $(MAKE) -C libffi              binary-dist WHERE_AM_I=$(WHERE_AM_I)/libffi
348         $(MAKE) -C libraries           binary-dist WHERE_AM_I=$(WHERE_AM_I)/libraries
349         $(MAKE) -C libraries/Cabal/doc binary-dist WHERE_AM_I=$(WHERE_AM_I)/libraries/Cabal/doc
350 # Now thinks get messier. Some files we need to move around, rename or
351 # generate. We do this under $(BIN_DIST_PREP).
352         $(RM) -rf    $(BIN_DIST_PREP_DIR)
353         $(MKDIRHIER) $(BIN_DIST_PREP)/mk
354         echo 'include $$(TOP)/Makefile-vars' >  $(BIN_DIST_PREP)/mk/boilerplate.mk
355         echo 'include $$(TOP)/mk/package.mk' >  $(BIN_DIST_PREP)/mk/target.mk
356         echo 'include $$(TOP)/mk/install.mk' >> $(BIN_DIST_PREP)/mk/target.mk
357         echo 'include $$(TOP)/mk/recurse.mk' >> $(BIN_DIST_PREP)/mk/target.mk
358         touch                                   $(BIN_DIST_PREP)/mk/bindist.mk
359 ifeq "$(darwin_TARGET_OS)" "1"
360         cp mk/fix_install_names.sh $(BIN_DIST_PREP)/mk
361 endif
362
363         cp distrib/Makefile         $(BIN_DIST_PREP)
364         cp distrib/INSTALL          $(BIN_DIST_PREP)
365         cp distrib/README           $(BIN_DIST_PREP)
366         cp distrib/configure-bin.ac $(BIN_DIST_PREP)/configure.ac
367 # We can't just list aclocal.m4 in $(BIN_DIST_LIST), as it needs to be
368 # next to configure.ac when we run autoreconf
369         cp aclocal.m4               $(BIN_DIST_PREP)
370         cd $(BIN_DIST_PREP) && autoreconf
371 # We need to copy the pwd program that was built with stage1 to where
372 # the build system expects to find it, i.e. the location the pwd built
373 # with the bootstrapping compiler normally occupies
374         $(MKDIRHIER) $(BIN_DIST_PREP)/utils/pwd
375         cp utils/pwd/dist-install/build/pwd/pwd $(BIN_DIST_PREP)/utils/pwd
376 # And likewise the installPackage program
377         $(MKDIRHIER) $(BIN_DIST_PREP)/utils/installPackage/install-inplace/bin
378         cp utils/installPackage/dist-install/build/installPackage/installPackage \
379            $(BIN_DIST_PREP)/utils/installPackage/install-inplace/bin
380
381         echo "package = ghc"                              >> $(BIN_DIST_VARFILE)
382         echo "version = $(ProjectVersion)"                >> $(BIN_DIST_VARFILE)
383         echo "ProjectVersion = $(ProjectVersion)"         >> $(BIN_DIST_VARFILE)
384         echo "HaveLibGmp = $(HaveLibGmp)"                 >> $(BIN_DIST_VARFILE)
385         echo "GhcLibsWithUnix = $(GhcLibsWithUnix)"       >> $(BIN_DIST_VARFILE)
386         echo "GhcWithInterpreter = $(GhcWithInterpreter)" >> $(BIN_DIST_VARFILE)
387         echo "GhcHasEditline = $(GhcHasEditline)"         >> $(BIN_DIST_VARFILE)
388         echo "BootingFromHc = $(BootingFromHc)"           >> $(BIN_DIST_VARFILE)
389         echo "XMLDocWays = $(XMLDocWays)"                 >> $(BIN_DIST_VARFILE)
390 # We won't actually use xsltproc, but we need to know if it's "" or not
391         echo "XSLTPROC = $(XSLTPROC)"                     >> $(BIN_DIST_VARFILE)
392         echo "TARGETPLATFORM = $(TARGETPLATFORM)"         >> $(BIN_DIST_VARFILE)
393         echo "HADDOCK_DOCS = $(HADDOCK_DOCS)"             >> $(BIN_DIST_VARFILE)
394         echo "LATEX_DOCS = $(LATEX_DOCS)"                 >> $(BIN_DIST_VARFILE)
395         echo "INTEGER_LIBRARY = $(INTEGER_LIBRARY)"       >> $(BIN_DIST_VARFILE)
396         cat distrib/Makefile-bin-vars.in                  >> $(BIN_DIST_VARFILE)
397
398 # With that done, we can now build the actual tarball
399
400         $(RM) -f $(BIN_DIST_NAME)
401         ln -s . $(BIN_DIST_NAME)
402 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
403 # tree then we want to include the real file, not a symlink to it
404         $(TAR) hcf $(BIN_DIST_TAR) -T $(BIN_DIST_LIST)
405         cd $(BIN_DIST_PREP_DIR) && $(TAR) rf $(BIN_DIST_TAR) $(BIN_DIST_NAME)
406         bzip2 < $(BIN_DIST_TAR) > $(BIN_DIST_TAR_BZ2)
407         $(TAR) tf $(BIN_DIST_TAR) | sort > bin-manifest-$(ProjectVersion)
408 endif
409
410 PUBLISH_FILES = $(BIN_DIST_TAR_BZ2)
411
412 # Upload the distribution and documentation
413 ifneq "$(ISCC)" ""
414 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-$(TARGETPLATFORM)
415 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
416
417 PUBLISH_FILES += $(WINDOWS_INSTALLER)
418
419 binary-dist :: generate-windows-installer
420
421 .PHONY: generate-windows-installer
422 generate-windows-installer ::
423         $(SED) "s/@VERSION@/$(ProjectVersion)/" distrib/ghc.iss | $(ISCC) /O. /F$(WINDOWS_INSTALLER_BASE) -
424 endif
425
426 # Upload the distribution and documentation
427 ifneq "$(PublishLocation)" ""
428 publish ::
429         make publish-binary-dist 'prefix=$(BIN_DIST_INST_DIR)'
430 endif
431
432 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
433
434 .PHONY: publish-binary-dist
435 publish-binary-dist ::
436         @for f in $(PUBLISH_FILES); \
437             do $(call nTimes,10,$(PublishCp) $$f $(PublishLocation)/dist); \
438         done
439
440 # You need to "make binddisttest" before publishing the docs, as it
441 # works by publish setting $(prefix) to inside the binddisttest
442 # directory so $(docdir) points to the right place.
443
444 # We assume that Windows means Cygwin, as we can't just use docdir
445 # unchanged or rsync (really SSH?) thinks that c:/foo means /foo on
446 # the machine c.
447
448 ifeq "$(Windows)" "YES"
449 PUBLISH_DOCDIR = $(shell cygpath --unix $(docdir))
450 else
451 PUBLISH_DOCDIR = $(docdir)
452 endif
453
454 publish-binary-dist ::
455         $(call nTimes,10,$(PublishCp) -r "$(PUBLISH_DOCDIR)"/* $(PublishLocation)/docs)
456
457 binary-dist::
458         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
459
460 # -----------------------------------------------------------------------------
461 # Building MacOS installer packages
462 #
463 # 'framework-pkg'
464 #       Create an installer package for /Library/Frameworks/GHC.framework
465 #
466 # 'framework-binary-dist'
467 #       Create an installer package for GHC.framework encapsulating a
468 #       binary-dist to make it relocatable
469 #       FIXME: This is only partially implemented so far
470
471 ifeq "$(darwin_TARGET_OS)" "1"
472
473 .PHONY: framework-pkg framework-binary-dist
474
475 framework-pkg:
476         $(MAKE) -C distrib/MacOS framework-pkg
477
478 framework-binary-dist:
479         $(MAKE) -C distrib/MacOS framework-binary-dist
480
481 endif
482
483 # -----------------------------------------------------------------------------
484 # Building source distributions
485 #
486 # Do it like this: 
487 #
488 #       $ make
489 #       $ make dist
490 #
491 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
492 #
493
494 .PHONY: dist
495
496 #
497 # Directory in which we're going to build the src dist
498 #
499 SRC_DIST_NAME=ghc-$(ProjectVersion)
500 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
501
502 #
503 # Files to include in source distributions
504 #
505 SRC_DIST_DIRS += mk docs distrib bindisttest $(filter-out docs distrib libraries/Cabal/doc,$(SUBDIRS))
506 SRC_DIST_FILES += \
507         configure.ac config.guess config.sub configure \
508         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
509         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION boot
510
511 # -----------------------------------------------------------------------------
512 # Source distributions
513
514 # A source dist is built from a complete build tree, because we
515 # require some extra files not contained in a darcs checkout: the
516 # output from Happy and Alex, for example.
517
518 # The steps performed by 'make dist' are as follows:
519 #   - create a complete link-tree of the current build tree in /tmp
520 #   - run 'make distclean' on that tree
521 #   - remove a bunch of other files that we know shouldn't be in the dist
522 #   - tar up first the extralibs package, then the main source package
523
524 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/%, $(shell grep -E "extralibs|dph" packages | grep -v "^\#" | sed "s/ .*//"))
525
526 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
527 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
528
529 VERSION :
530         echo $(ProjectVersion) >VERSION
531
532 dist :: VERSION
533
534 # Use:
535 #     $(call copy_generated_compiler_file,cmm,CmmLex,x)
536 # to copy the generated file that replaces compiler/cmm/CmmLex.x
537 # XXX Should this be unconditional? Do we want to support making a src dist
538 # from an unbuilt tree?
539 copy_generated_compiler_file = \
540   if test -f $(FPTOOLS_TOP_ABS)/compiler/dist-stage2/build/$2.hs; \
541   then \
542     $(CP) $(FPTOOLS_TOP_ABS)/compiler/dist-stage2/build/$2.hs compiler/$1/ ; \
543     mv compiler/$1/$2.$3 compiler/$1/$2.$3.source ; \
544   fi
545 copy_generated_util_file = \
546   if test -f $(FPTOOLS_TOP_ABS)/utils/$1/dist-install/build/$1/$1-tmp/$2.hs; \
547   then \
548     $(CP) $(FPTOOLS_TOP_ABS)/utils/$1/dist-install/build/$1/$1-tmp/$2.hs utils/$1/ ; \
549     mv utils/$1/$2.$3 utils/$1/$2.$3.source ; \
550   fi
551
552 dist ::
553         $(RM) -rf $(SRC_DIST_DIR)
554         $(RM) $(SRC_DIST_NAME).tar.gz
555         mkdir $(SRC_DIST_DIR)
556         ( cd $(SRC_DIST_DIR) \
557           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
558           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
559           && $(MAKE) distclean \
560           && if test -f $(FPTOOLS_TOP_ABS)/libraries/haskell-src/dist/build/Language/Haskell/Parser.hs; then $(CP) $(FPTOOLS_TOP_ABS)/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 \
561           && $(call copy_generated_compiler_file,cmm,CmmLex,x) \
562           && $(call copy_generated_compiler_file,cmm,CmmParse,y) \
563           && $(call copy_generated_compiler_file,main,ParsePkgConf,y) \
564           && $(call copy_generated_compiler_file,parser,HaddockLex,x) \
565           && $(call copy_generated_compiler_file,parser,HaddockParse,y) \
566           && $(call copy_generated_compiler_file,parser,Lexer,x) \
567           && $(call copy_generated_compiler_file,parser,Parser,y.pp) \
568           && $(call copy_generated_compiler_file,parser,ParserCore,y) \
569           && $(call copy_generated_util_file,hpc,HpcParser,y) \
570           && $(RM) -rf compiler/stage[123] mk/build.mk \
571           && $(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" \) -print | xargs $(RM) -rf \
572         )
573         $(TAR) chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
574         $(RM) -rf $(EXTRA_LIBS)
575         $(TAR) chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
576
577 # Upload the distribution(s)
578 # Retrying is to work around buggy firewalls that corrupt large file transfers
579 # over SSH.
580 ifneq "$(PublishLocation)" ""
581 dist ::
582         @for i in 0 1 2 3 4 5 6 7 8 9; do \
583                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist"; \
584                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist; then break; fi; \
585         done
586         @for i in 0 1 2 3 4 5 6 7 8 9; do \
587                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist"; \
588                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi; \
589         done
590 endif
591
592 # -----------------------------------------------------------------------------
593 # HC file bundles
594
595 hc-file-bundle :
596         $(RM) -r ghc-$(ProjectVersion)
597         $(LN_S) . ghc-$(ProjectVersion)
598         $(FIND) ghc-$(ProjectVersion)/compiler \
599              ghc-$(ProjectVersion)/utils \
600              ghc-$(ProjectVersion)/libraries -follow \
601           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
602         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
603              if test "x$$f" != "x" && test -f `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
604                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
605              fi; \
606         done;
607         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
608              if test "x$$f" != "x"; then \
609                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
610              fi; \
611         done;
612         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
613         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
614         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
615         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
616         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
617         $(TAR) czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
618
619 # -----------------------------------------------------------------------------
620 # Cleaning
621
622 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
623
624 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
625         docs/users_guide/ug-book.xml extra-gcc-opts
626
627 # don't clean config.mk: it's needed when cleaning stuff later on
628 LATE_DIST_CLEAN_FILES += mk/config.mk mk/are-validating.mk
629
630 # VERSION is shipped in a source dist
631 MAINTAINER_CLEAN_FILES += VERSION
632
633 extraclean::
634         $(RM) -rf autom4te.cache
635
636 clean distclean ::
637         $(RM) -rf inplace-datadir
638
639 clean distclean ::
640         $(MAKE) -C bindisttest $@
641         if test -d testsuite; then $(MAKE) -C testsuite $@; fi
642
643 # -----------------------------------------------------------------------------
644
645 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
646 NO_BOOT_TARGET=YES
647 NO_ALL_TARGET=YES
648 NO_INSTALL_TARGET=YES
649
650 include $(TOP)/mk/target.mk
651
652 # -----------------------------------------------------------------------------
653