X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=distrib%2FMakefile-bin.in;h=4f81e71dfabec494a057a84e21cc7b8c44e705e1;hb=afa56dd5218559dad4503a6db32769c356e7652b;hp=a7cbb4ab489d3b1248d50e69cbc2ce89454c776d;hpb=50faeaf429a0671e2aaaec46851ffecf02e5ec7f;p=ghc-hetmet.git diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index a7cbb4a..4f81e71 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -38,11 +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 +# where to install the HTML documentation files. +# * pdfdir +# where to install the PDF documentation files. +# * psdir +# where to install the Postscript documentation 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' @@ -66,9 +66,9 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ # default -infodir = $(datadir) -htmldir = $(datadir) -dvidir = $(datadir) +htmldir = $(datadir) +psdir = $(datadir) +pdfdir = $(datadir) PERL = @PerlCmd@ @@ -171,19 +171,15 @@ config-pkgs :: fi; \ done -# Convert pwd's UNC reported path into DOS style -# (cygwin32 only.) -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 + $(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,23 +192,20 @@ 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 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 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 \ + @if test -x "./post-install-script" ; then \ echo "Running project-specific post-install script ..." ; \ - ./post-install-script $(platform) $(prefix) \ - $(package)-$(version); \ + ./post-install-script $(platform) $(libdir) ; \ echo "Done" ; \ fi @@ -260,7 +253,7 @@ show-install-setup: 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 -f ps/*.ps ; then $(CP) ps/*.ps $(psdir) ; fi install-dirs-docs: $(INSTALL_DIR) $(htmldir)