[project @ 2001-05-16 09:55:27 by rrt]
[ghc-hetmet.git] / distrib / Makefile-bin.in
index 0fd7727..b07ae71 100644 (file)
 #     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@
@@ -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,15 +190,26 @@ 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 postinstall
+install :: config-pkgs install-dirs install-bin install-libs install-datas install-docs postinstall denounce
 
-.PHONY: install-bin install-libs install-datas postinstall
+.PHONY: install-bin install-libs install-datas postinstall denounce
+
+denounce:
+       @echo
+       @echo =======================================================================
+       @echo Installation of $(package)-$(version) was successful.
+       @echo To use, add $(bindir) to your PATH.
+       @if test -d 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 \
+       @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
 
@@ -233,31 +250,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
+.PHONY: show-install-setup install-docs install-dirs-docs
 
-install-docs : install-html install-dvi install-info
+install-docs : install-dirs-docs
+       if test -d html ; then $(CP) -r html/* $(htmldir) ; fi
+       if test -f ps/*.ps ; then $(CP) ps/*.ps $(psdir) ; fi
 
-install-dvi: install-dirs-dvi
-       $(INSTALL_DATA) dvi/* $(dvidir)
-
-install-info: install-dirs-info
-       $(INSTALL_DATA) info/* $(infodir)
-
-install-html: install-dirs-html
-       $(CP) -r html/* $(htmldir)
-       $(CHMOD) -R $(LIB_PERMS) $(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) 
-