[project @ 2001-04-17 21:44:16 by lewie]
[ghc-hetmet.git] / distrib / Makefile-bin.in
index 0c7f1b6..4ab0e9a 100644 (file)
@@ -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,14 +190,24 @@ 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 Installation of ghc-5.00 was successful.
+       @echo To use, add $(bindir) to your PATH.
+       @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
 
 postinstall:
-       if test -x "bin/$(platform)/post-install-script" ; then \
+       if test -x "./post-install-script" ; then \
                echo "Running project-specific post-install script ..." ; \
-               bin/$(platform)/post-install-script $(platform) $(prefix) \
+               ./post-install-script $(platform) $(prefix) \
                        $(package)-$(version); \
                echo "Done" ; \
        fi
@@ -233,31 +249,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
+.PHONY: show-install-setup install-docs install-dirs-docs
 
-install-dvi: install-dirs-dvi
-       $(INSTALL_DATA) dvi/* $(dvidir)
-
-install-info: install-dirs-info
-       $(INSTALL_DATA) info/* $(infodir)
-
-install-html: install-dirs-html
+install-docs : install-dirs-docs
        $(CP) -r html/* $(htmldir)
-       $(CHMOD) -R $(LIB_PERMS) $(htmldir)
-#      $(INSTALL_DATA) html/* $(htmldir)
+       $(CP) ps/set.ps $(htmldir)/set/set.ps
 
-install-dirs-html:
+install-dirs-docs:
        $(INSTALL_DIR) $(htmldir) 
 
-install-dirs-info:
-       $(INSTALL_DIR) $(infodir) 
-
-install-dirs-dvi:
-       $(INSTALL_DIR) $(dvidir) 
-