install the Cabal docs, and make them show up in a binary distribution
[ghc-hetmet.git] / distrib / Makefile
1
2 include Makefile-vars
3
4 .PHONY: install postinstall denounce show-install-setup
5
6 #.PHONY: in-place
7 # This has bitrotted:
8 #in-place ::
9 #       @if test -x "./post-inplace-script" ; then \
10 #               echo "Running project-specific post-inplace script ..." ; \
11 #               ./post-inplace-script $(platform) `pwd` \
12 #                       $(package)-$(version); \
13 #               echo "Done" ; \
14 #       fi
15 #       @echo "Finished configuring..to use, add `pwd`/bin/$(platform) to your PATH."
16
17 install ::
18         $(INSTALL_DIR) $(bindir)
19
20 install::
21         $(MAKE) -C includes  install      DOING_BIN_DIST=YES
22         $(MAKE) -C driver    install      DOING_BIN_DIST=YES
23         $(MAKE) -C utils     install      DOING_BIN_DIST=YES
24         $(MAKE) -C rts       install      DOING_BIN_DIST=YES
25         $(MAKE) -C libraries install      DOING_BIN_DIST=YES
26         $(MAKE) -C compiler  install      DOING_BIN_DIST=YES
27         $(MAKE) -C docs      install-docs DOING_BIN_DIST=YES
28         $(MAKE) -C libraries/Cabal/doc install-docs DOING_BIN_DIST=YES
29         $(INSTALL_DATA) $(INSTALL_OPTS) extra-gcc-opts $(libdir)
30
31 install :: postinstall denounce
32
33 denounce:
34         @echo
35         @echo =======================================================================
36         @echo Installation of $(package)-$(version) was successful.
37         @echo
38         @echo To use, add $(bindir) to your PATH.
39         @echo
40         @if test -f share/html/index.html; then \
41            echo For documentation, see $(htmldir)/index.html ; \
42         elif test -d share/html ; then \
43            echo Docs can be found in $(htmldir). ; \
44         else \
45            echo "Warning: this binary distribution does NOT contain documentation!" ; \
46         fi
47         @echo =======================================================================
48
49 postinstall:
50         @if test -x "./post-install-script" ; then \
51                 echo "Running project-specific post-install script ..." ; \
52                 ./post-install-script $(platform) $(libdir) ; \
53                 echo "Done" ; \
54         fi
55
56 show-install-setup:
57         @echo "Install setup..."
58         @echo "bindir  = $(bindir)"
59         @echo "libdir  = $(libdir) (libdir  = $(libdir))"
60         @echo "datadir = $(datadir) (datadir = $(datadir))"
61