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