Don't break when asked to install-docs
authorIan Lynagh <igloo@earth.li>
Fri, 16 Mar 2007 17:00:03 +0000 (17:00 +0000)
committerIan Lynagh <igloo@earth.li>
Fri, 16 Mar 2007 17:00:03 +0000 (17:00 +0000)
(we don't actually do anything useful either, because Cabal doesn't have
an install-docs option).

libraries/Makefile

index 30043ff..82cf02e 100644 (file)
@@ -146,7 +146,7 @@ doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
                %/setup/Setup
        cd $* && setup/Setup haddock
 
-.PHONY: install.library.%
+.PHONY: install install-docs install.library.%
 
 INSTALL_DIR=$(prefix)/share/ghc/doc/html/
 
@@ -158,6 +158,10 @@ install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
        $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.js  $(INSTALL_DIR)
        $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.gif $(INSTALL_DIR)
 
+# Cabal doesn't let us ask to install docs only, so do nothing here
+install-docs:
+       @:
+
 # Ideally this would depend on a stamp/build.library.%, but if it does
 # then we can't change the libraries and then just rerun make.
 # Thus if you install without building then it will just break.