[project @ 2003-02-05 12:33:33 by simonmar]
[ghc-hetmet.git] / mk / package.mk
index 320c22a..bf3abf2 100644 (file)
@@ -1,5 +1,5 @@
 # -----------------------------------------------------------------------------
-# $Id: package.mk,v 1.17 2002/07/23 11:23:55 simonmar Exp $
+# $Id: package.mk,v 1.22 2003/01/14 13:43:11 simonmar Exp $
 
 ifneq "$(PACKAGE)" ""
 
@@ -23,7 +23,11 @@ $(PACKAGE).conf.installed : $(PACKAGE).conf.in
 # configuration needs updating if it was updated already in the last
 # second.
 #
-STAMP_PKG_CONF = stamp-pkg-conf
+# The stamp file goes in $(GHC_DRIVER_DIR), so that if someone happens
+# to 'make clean' in ghc without cleaning in libraries too, the packages
+# will be correctly re-installed.
+#
+STAMP_PKG_CONF = $(GHC_DRIVER_DIR)/stamp-pkg-conf-$(PACKAGE)
 CLEAN_FILES += $(STAMP_PKG_CONF)
 
 boot all :: $(STAMP_PKG_CONF)
@@ -156,8 +160,21 @@ HTML_DIR = html
 HTML_DOC = $(HTML_DIR)/index.html
 
 ifneq "$(HS_PPS)" ""
+
+CLEAN_FILES += $(HS_PPS) $(addsuffix .tmp, $(HS_SRCS))
+
+ifeq "$(HADDOCK)" ""
+html ::
+       @echo Haddock must be installed in order to build HTML library documentation.
+       @echo Please install Haddock and re-configure.
+       @exit 1
+endif
+
 html :: $(HTML_DOC)
 
+extraclean :: 
+       $(RM) -rf $(HTML_DIR)
+
 $(HTML_DOC) : $(HS_PPS)
        @$(INSTALL_DIR) $(HTML_DIR)
        $(HADDOCK) $(HADDOCK_OPTS) -h -o $(HTML_DIR) $(HS_PPS) \
@@ -177,6 +194,7 @@ install-docs :: $(HTML_DOC)
           echo $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir)/html/$(PACKAGE); \
           $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir)/html/$(PACKAGE); \
        done
+       $(INSTALL_DATA) $(INSTALL_OPTS) $(PACKAGE).haddock $(datadir)/html/$(PACKAGE)
 
 endif # HS_PPS
 endif # NO_HADDOCK_DOCS