X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=88e14df03f382123a600a18eb91fa1987a03c4a1;hb=a106bbffa1188d62bb86e357714bbe4acdecd37e;hp=4b0cf5f5b000bd69324ca8e33d5259b11dafe83e;hpb=c6ab507e3bbc07ebb412b6fce79ca5e570f0ed73;p=ghc-hetmet.git diff --git a/Makefile b/Makefile index 4b0cf5f..88e14df 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ project-check : # ----------------------------------------------------------------------------- # Targets: all, stage1, stage2, stage3 -DIST_CLEAN_FILES += config.cache config.status mk/config.mk mk/config.h mk/stamp-h +DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h extraclean:: $(RM) -rf autom4te.cache @@ -211,6 +211,10 @@ BIN_DIST_TOP= distrib/Makefile-bin.in \ config.sub \ aclocal.m4 +ifeq "$(darwin_TARGET_OS)" "1" +BIN_DIST_TOP+=mk/fix_install_names.sh +endif + # # binary-dist creates a binary bundle, set BIN_DIST_NAME # to package name and do `make binary-dist Project=' @@ -269,6 +273,7 @@ binary-dist:: echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in echo "PACKAGE_LIB_SPLICED_FILES = $($(Project)BinDistLibSplicedFiles)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in echo "PACKAGE_BINS = $($(Project)BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in + echo "PACKAGE_OPT_BINS = $($(Project)BinDistOptBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in echo "PACKAGE_LINKS = $($(Project)BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in @echo "Generating a shippable configure script.." @@ -284,11 +289,28 @@ binary-dist:: fi # # binary dist'ing the documentation. -# Which documentation to build/install is hardcoded below. -# +# The default documentation to build/install is given below; overrideable +# via build.mk or the 'make' command-line. -BINDIST_DOC_WAYS = html ps -# BINDIST_DOC_WAYS = +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 + +endif # BINDIST_DOC_WAYS binary-dist :: ifneq "$(DIR_DOCBOOK_XSL)" ""