X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=3b7f99cc9737edadcef4122c687d17af51e9526c;hb=618380a7fa2ca7b75b2b6a5bfa7eac4a86941510;hp=19c05a3dbaea080d12b77035887a2dd0f510af2f;hpb=642ac8a05ea7f449c367cd4293b0e07ca3305fd8;p=ghc-hetmet.git diff --git a/Makefile b/Makefile index 19c05a3..3b7f99c 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,11 @@ check-packages : exit 1; \ fi \ done + if test ! -e libraries/base/configure; then \ + echo "Looks like you're missing base's configure script."; \ + echo "Did you run 'sh boot' at the top level?"; \ + exit 1; \ + fi stage1 : check-packages $(MAKE) -C utils/mkdependC boot @@ -96,8 +101,8 @@ stage1 : check-packages $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \ if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ done - @$(MAKE) -C libraries boot - @$(MAKE) -C libraries all + $(MAKE) -C libraries boot + $(MAKE) -C libraries all stage2 : check-packages $(MAKE) -C compiler boot stage=2 @@ -206,7 +211,7 @@ install-docs :: # ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -BinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) hsc2hs +BinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) hsc2hs-ghc else BinDistShScripts = endif @@ -214,10 +219,9 @@ endif BinDistPrlScripts = ghcprof BinDistLibPrlScripts = ghc-asm ghc-split BinDistBins = hp2ps runghc -BinDistOptBins = runhaskell BinDistLinks = ghc ghci ghc-pkg BinDistLibSplicedFiles = package.conf -BinDistDirs = includes compiler docs driver libraries rts utils +BinDistDirs = includes compiler docs driver rts utils BIN_DIST_NAME=ghc-$(ProjectVersion) BIN_DIST_TOPDIR=$(FPTOOLS_TOP_ABS) @@ -225,17 +229,17 @@ BIN_DIST_DIR=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME) BIN_DIST_TARBALL=ghc-$(ProjectVersion)-$(TARGETPLATFORM).tar.bz2 -BIN_DIST_TOP= distrib/Makefile-bin.in \ - distrib/configure-bin.ac \ - distrib/INSTALL \ - distrib/README \ - ANNOUNCE \ - LICENSE \ - utils/mkdirhier/mkdirhier \ - install-sh \ - config.guess \ - config.sub \ - aclocal.m4 +BIN_DIST_TOP= distrib/Makefile \ + distrib/configure-bin.ac \ + distrib/INSTALL \ + distrib/README \ + ANNOUNCE \ + LICENSE \ + utils/mkdirhier/mkdirhier \ + install-sh \ + config.guess \ + config.sub \ + aclocal.m4 ifeq "$(darwin_TARGET_OS)" "1" BIN_DIST_TOP+=mk/fix_install_names.sh @@ -267,6 +271,8 @@ $(BINARY_DIST_PRE_RULES): binary-dist-pre-%: libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \ datadir=$(BIN_DIST_DIR)/share +VARFILE=$(BIN_DIST_DIR)/Makefile-vars.in + binary-dist:: @for i in $(BIN_DIST_TOP); do \ if test -f "$$i"; then \ @@ -275,17 +281,17 @@ binary-dist:: fi; \ done; @echo "Configuring the Makefile for this project..." - touch $(BIN_DIST_DIR)/Makefile.in - echo "package = ghc" >> $(BIN_DIST_DIR)/Makefile.in - echo "version = $(ProjectVersion)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_BINS = $(BinDistBins)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_OPT_BINS = $(BinDistOptBins)" >> $(BIN_DIST_DIR)/Makefile.in - echo "PACKAGE_LINKS = $(BinDistLinks)" >> $(BIN_DIST_DIR)/Makefile.in - cat $(BIN_DIST_DIR)/Makefile-bin.in >> $(BIN_DIST_DIR)/Makefile.in + echo > $(VARFILE) + echo "package = ghc" >> $(VARFILE) + echo "version = $(ProjectVersion)" >> $(VARFILE) + echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)" >> $(VARFILE) + echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)" >> $(VARFILE) + echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)" >> $(VARFILE) + echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(VARFILE) + echo "PACKAGE_BINS = $(BinDistBins)" >> $(VARFILE) + echo "PACKAGE_OPT_BINS = $(BinDistOptBins)" >> $(VARFILE) + echo "PACKAGE_LINKS = $(BinDistLinks)" >> $(VARFILE) + cat distrib/Makefile-bin-vars.in >> $(VARFILE) @echo "Generating a shippable configure script.." $(MV) $(BIN_DIST_DIR)/configure-bin.ac $(BIN_DIST_DIR)/configure.ac ( cd $(BIN_DIST_DIR); autoconf ) @@ -296,21 +302,23 @@ binary-dist:: ifndef BINDIST_DOC_WAYS -ifneq "$(XSLTPROC)" "" -BINDIST_DOC_WAYS = html -ifneq "$(FOP)" "" -BINDIST_DOC_WAYS += ps pdf -else -ifneq "$(PDFXMLTEX)" "" -BINDIST_DOC_WAYS += pdf -endif -ifneq "$(XMLTEX)" "" -ifneq "$(DVIPS)" "" -BINDIST_DOC_WAYS += ps -endif # DVIPS -endif # XMLTEX -endif # FOP -endif # XSLTPROC +BINDIST_DOC_WAYS = $(XMLDocWays) + +# ifneq "$(XSLTPROC)" "" +# BINDIST_DOC_WAYS = html +# ifneq "$(FOP)" "" +# BINDIST_DOC_WAYS += ps pdf +# else +# ifneq "$(PDFXMLTEX)" "" +# BINDIST_DOC_WAYS += pdf +# endif +# ifneq "$(XMLTEX)" "" +# ifneq "$(DVIPS)" "" +# BINDIST_DOC_WAYS += ps +# endif # DVIPS +# endif # XMLTEX +# endif # FOP +# endif # XSLTPROC endif # BINDIST_DOC_WAYS @@ -362,20 +370,58 @@ binary-dist:: done endif +.PHONY: binary-dist-doc-% + +BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries + +LIBRARY_SUBDIRS=$(shell $(MAKE) -s -C libraries subdirs) + +BINARY_DIST_LIBRARY_RULES=$(foreach d,$(LIBRARY_SUBDIRS),binary-dist-lib-$d) + +binary-dist:: $(BINARY_DIST_LIBRARY_RULES) + cp libraries/Makefile $(BIN_DIST_LIBDIR) + cp libraries/gen_contents_index $(BIN_DIST_LIBDIR) + cp libraries/index.html $(BIN_DIST_LIBDIR) + cp libraries/doc-index.html $(BIN_DIST_LIBDIR) + cp -a libraries/stamp $(BIN_DIST_LIBDIR) + +$(BINARY_DIST_LIBRARY_RULES): binary-dist-lib-%: + $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*/setup + cp libraries/$*/setup/Setup $(BIN_DIST_LIBDIR)/$*/setup + cp libraries/$*/*.cabal $(BIN_DIST_LIBDIR)/$* + cp -a libraries/$*/dist $(BIN_DIST_LIBDIR)/$* + find $(BIN_DIST_LIBDIR)/$*/dist \ + \( \( -name "*.o" -o -name "*.p_o" \) -a \! -name "HS*" \) \ + -exec rm {} \; + +# Jiggle the files around to make a valid Windows distribution if necessary +ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +binary-dist :: fiddle-binary-dist +endif + +.PHONY: fiddle-binary-dist +fiddle-binary-dist: + cd $(BIN_DIST_DIR) && ../distrib/prep-bin-dist-mingw # Tar up the distribution and build a manifest -binary-dist :: +binary-dist :: tar-binary-dist + +.PHONY: tar-binary-dist +tar-binary-dist: ( cd $(BIN_DIST_TOPDIR); tar cf - $(BIN_DIST_NAME) | bzip2 >$(BIN_DIST_TARBALL) ) ( cd $(BIN_DIST_TOPDIR); bunzip2 -c $(BIN_DIST_TARBALL) | tar tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >bin-manifest-$(ProjectVersion) ) # Upload the distribution and documentation ifneq "$(PublishLocation)" "" -binary-dist :: +binary-dist :: publish-binary-dist +endif + +.PHONY: publish-binary-dist +publish-binary-dist : @for i in 0 1 2 3 4 5 6 7 8 9; do \ echo "Try $$i: $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)"; \ if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation); then break; fi\ done $(PublishCp) -r $(BIN_DIST_DIR)/share/html/* $(PublishLocation)/docs -endif binary-dist::