summaryrefslogtreecommitdiff
path: root/distrib/Makefile-bin.in
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-07-02 14:55:29 +0000
committersimonmar <unknown>2002-07-02 14:55:29 +0000
commitc93e527c47ebe93a5257654b7c6c91d1faacf342 (patch)
tree208a23af50da3f96ad3c1bab7eed440ebcce15a4 /distrib/Makefile-bin.in
parent91a8866a887056ece38a57bc0cbbce1d2f4dbb0f (diff)
downloadhaskell-c93e527c47ebe93a5257654b7c6c91d1faacf342.tar.gz
[project @ 2002-07-02 14:55:29 by simonmar]
Updates, mainly to get the documentation installed
Diffstat (limited to 'distrib/Makefile-bin.in')
-rw-r--r--distrib/Makefile-bin.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in
index 4f81e71dfa..9a06b94644 100644
--- a/distrib/Makefile-bin.in
+++ b/distrib/Makefile-bin.in
@@ -44,10 +44,6 @@
# * 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'
-# and `install-info').
-#
# For more complete instructions, consult the INSTALL file
# that came with the bundle, and/or consult the installation
# documentation in one of the document directories.
@@ -66,7 +62,7 @@ prefix = @prefix@
exec_prefix = @exec_prefix@
# default
-htmldir = $(datadir)
+htmldir = $(datadir)/html
psdir = $(datadir)
pdfdir = $(datadir)
@@ -194,8 +190,12 @@ denounce:
@echo
@echo =======================================================================
@echo Installation of $(package)-$(version) was successful.
+ @echo
@echo To use, add $(bindir) to your PATH.
- @if test -d html ; then \
+ @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!" ; \
@@ -252,8 +252,8 @@ 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/*.ps ; then $(CP) ps/*.ps $(psdir) ; fi
+ if test -d share/html ; then $(CP) -r share/html/* $(htmldir) ; fi
+ if test -f share/*.ps ; then $(CP) share/*.ps $(psdir) ; fi
install-dirs-docs:
$(INSTALL_DIR) $(htmldir)