X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=distrib%2FMakefile-bin.in;h=b11b3702c83382e1fd25b53ffeda05da7f2d574d;hb=4ca3e08460d0b824cc819fdfb910116858dbcb3f;hp=7da408ccf618066c272646b8fce852c2abbf35da;hpb=8a42a90d764fa45e490e969e5b64c944a57db5bd;p=ghc-hetmet.git diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index 7da408c..b11b370 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -91,7 +91,7 @@ INSTALL_DIR = ./mkdirhier # to be created, i.e., create a symlink, ghc-$(version), pointing to ghc to # avoid version vertigo. # -VERSION_SYMLINKS_FOR=$(package) +VERSION_SYMLINKS_FOR=$(PACKAGE_LINKS) # Binaries to install PACKAGE_BIN_INSTALL=$(PACKAGE_PRL_SCRIPTS) $(PACKAGE_SH_SCRIPTS) @@ -177,6 +177,12 @@ CURRENT_DIR = $(shell pwd | sed 's|^//\(.\)|\1:|' ) in-place :: $(MAKE) $(MFLAGS) config-pkgs bindir=$(CURRENT_DIR)/bin/$(platform) libdir=$(CURRENT_DIR)/lib/$(platform) datadir=$(CURRENT_DIR)/share + if test -x "./post-inplace-script" ; then \ + echo "Running project-specific post-inplace script ..." ; \ + ./post-inplace-script $(platform) $(CURRENT_DIR) \ + $(package)-$(version); \ + echo "Done" ; \ + fi @echo "Finished configuring..to use, add $(CURRENT_DIR)/bin/$(platform) to your PATH." install-dirs :: @@ -184,9 +190,30 @@ install-dirs :: (cd lib/$(platform); find . -type d -exec sh -c '../../$(INSTALL_DIR) $$0 $(libdir)/$$0' {} \; ) (cd share; find . -type d -exec sh -c '../$(INSTALL_DIR) $(datadir)/$$0' {} \; ) -install :: config-pkgs install-dirs install-bin install-libs install-datas - -.PHONY: install-bin install-libs install-datas +install :: config-pkgs install-dirs install-bin install-libs install-datas install-docs postinstall denounce + +.PHONY: install-bin install-libs install-datas postinstall denounce + +denounce: + @echo + @echo Installation of ghc-5.00 was successful. + @echo To use, add $(bindir) to your PATH. + @if test -d html ; then \ + echo Docs: ;\ + echo " GHC User Guide is $(htmldir)/set/book-users-guide.html" ; \ + echo " Libraries Guide is $(htmldir)/set/book-hslibs.html" ; \ + echo " .ps form of both is in $(htmldir)/set/set.ps" ; \ + echo ; \ + else \ + echo "Warning: this binary distribution does NOT contain documentation!" ; \ + fi + +postinstall: + @if test -x "./post-install-script" ; then \ + echo "Running project-specific post-install script ..." ; \ + ./post-install-script $(platform) $(libdir) ; \ + echo "Done" ; \ + fi install-bin: for i in $(PACKAGE_BIN_INSTALL) ""; do \ @@ -195,15 +222,15 @@ install-bin: for i in $(PACKAGE_BINS) ""; do \ if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \ done; - for i in $(VERSION_SYMLINKS_FOR) ""; do \ + @for i in $(VERSION_SYMLINKS_FOR) ""; do \ if [ "x$$i" != "x" ]; then \ ( cd $(bindir); \ if ( $(PERL) -e '$$fn="'$$i'"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \ - echo "Creating a symbol link from $$i-$(version) to $$i"; \ + echo "Creating a symbolic link from $$i-$(version) to $$i"; \ $(RM) $$i; \ $(LN_S) $$i-$(version) $$i; \ else \ - echo "Creating a symbol link from $$i-$(version) to $$i failed: \`$$i' already exists"; \ + echo "Creating a symbolic link from $$i-$(version) to $$i failed: \`$$i' already exists"; \ echo "Perhaps remove \`$$i' manually?"; \ exit 1; \ fi;\ @@ -225,31 +252,15 @@ show-install-setup: @echo "datadir = $(datadir) (datadir = $(datadir))" # -# Documentation targets, install-docs for the whole lot, or -# install-{dvi,html,info} +# Documentation targets: install-docs. # -.PHONY: show-install-setup install-docs install-html install-info install-dirs-dvi install-dirs-html install-dirs-info - -install-docs : install-html install-dvi install-info - -install-dvi: install-dirs-dvi - $(INSTALL_DATA) dvi/* $(dvidir) +.PHONY: show-install-setup install-docs install-dirs-docs -install-info: install-dirs-info - $(INSTALL_DATA) info/* $(infodir) +install-docs : install-dirs-docs + if test -d html ; then $(CP) -r html/* $(htmldir) ; fi + if test -f ps/set.ps ; then $(CP) ps/set.ps $(htmldir)/set/set.ps ; fi -install-html: install-dirs-html - $(CHMOD) -R $(LIB_PERMS) html/* - $(CP) -r html/* $(htmldir) -# $(INSTALL_DATA) html/* $(htmldir) - -install-dirs-html: +install-dirs-docs: $(INSTALL_DIR) $(htmldir) -install-dirs-info: - $(INSTALL_DIR) $(infodir) - -install-dirs-dvi: - $(INSTALL_DIR) $(dvidir) -