X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=distrib%2FMakefile-bin.in;h=6df1e056d8ad176af0d4ba4900b820ef4031b6d3;hp=b11b3702c83382e1fd25b53ffeda05da7f2d574d;hb=a3e027a34f5e956da3875ab629aa2427e520f879;hpb=4ca3e08460d0b824cc819fdfb910116858dbcb3f diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index b11b370..6df1e05 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -38,15 +38,11 @@ # if it clashes with your reality, I guess. # # * htmldir -# where to install the documentation HTML files. -# * dvidir -# where to install the DVI files. -# * infodir -# where to install the Emacs info files -# -# Installing the documentation is not done as part of the `install' rule, but -# via `install-docs' (or if you want to be selective: `install-html', `install-dvi' -# and `install-info'). +# where to install the HTML documentation files. +# * pdfdir +# where to install the PDF documentation files. +# * psdir +# where to install the Postscript documentation files. # # For more complete instructions, consult the INSTALL file # that came with the bundle, and/or consult the installation @@ -66,9 +62,9 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ # default -infodir = $(datadir) -htmldir = $(datadir) -dvidir = $(datadir) +htmldir = $(datadir)/html +psdir = $(datadir) +pdfdir = $(datadir) PERL = @PerlCmd@ @@ -170,20 +166,29 @@ config-pkgs :: echo "Done."; \ fi; \ done - -# Convert pwd's UNC reported path into DOS style -# (cygwin32 only.) -CURRENT_DIR = $(shell pwd | sed 's|^//\(.\)|\1:|' ) + @for i in $(PACKAGE_LIB_SPLICED_FILES) ""; do \ + if test "$$i"; then \ + echo "Creating a configured version of $$i .."; \ + $(PERL) -i.bak -lpe 's|\$$libdir|$(libdir)|g;s|\$$datadir|$(datadir)|g' lib/$(platform)/$$i; \ + fi; \ + done + @if test "$(platform)" = "powerpc-apple-darwin"; then \ + echo "Configuring install names..."; \ + for i in lib/$(platform)/*; do \ + sh fix_install_names.sh "$(libdir)" "$$i"; \ + done; \ + echo "Done."; \ + fi 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 \ + $(MAKE) $(MFLAGS) config-pkgs bindir=`pwd`/bin/$(platform) libdir=`pwd`/lib/$(platform) datadir=`pwd`/share + @if test -x "./post-inplace-script" ; then \ echo "Running project-specific post-inplace script ..." ; \ - ./post-inplace-script $(platform) $(CURRENT_DIR) \ + ./post-inplace-script $(platform) `pwd` \ $(package)-$(version); \ echo "Done" ; \ fi - @echo "Finished configuring..to use, add $(CURRENT_DIR)/bin/$(platform) to your PATH." + @echo "Finished configuring..to use, add `pwd`/bin/$(platform) to your PATH." install-dirs :: $(INSTALL_DIR) $(bindir) @@ -196,17 +201,19 @@ install :: config-pkgs install-dirs install-bin install-libs install-datas insta denounce: @echo - @echo Installation of ghc-5.00 was successful. + @echo ======================================================================= + @echo Installation of $(package)-$(version) was successful. + @echo @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 ; \ + @echo + @if test -f share/html/index.html; then \ + echo For documentation, see $(htmldir)/index.html ; \ + elif test -d share/html ; then \ + echo Docs can be found in $(htmldir). ; \ else \ echo "Warning: this binary distribution does NOT contain documentation!" ; \ fi + @echo ======================================================================= postinstall: @if test -x "./post-install-script" ; then \ @@ -222,6 +229,9 @@ 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 $(PACKAGE_OPT_BINS) ""; do \ + if test -n "$$i" -a ! -f "$(bindir)/$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \ + done; @for i in $(VERSION_SYMLINKS_FOR) ""; do \ if [ "x$$i" != "x" ]; then \ ( cd $(bindir); \ @@ -243,7 +253,9 @@ install-libs: (cd lib/$(platform); find . -type f -exec sh -c '$(CP) $$0 $(libdir)/$$0' {} \; ) install-datas: - (cd share; find . -type f -exec sh -c '$(INSTALL_DATA) $$0 $(datadir)/$$0' {} \; ) + for i in `(cd share; find . -type f )`; do \ + $(INSTALL_DATA) share/$$i $(datadir)/$$i; \ + done show-install-setup: @echo "Install setup..." @@ -258,8 +270,12 @@ show-install-setup: .PHONY: show-install-setup install-docs install-dirs-docs 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 + if test -d share/html ; then $(CP) -r share/html/* $(htmldir) ; fi + for i in share/*.ps; do \ + if test -f "$$i"; then \ + $(CP) $$i $(psdir) ; \ + fi \ + done install-dirs-docs: $(INSTALL_DIR) $(htmldir)