diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-10-26 12:24:56 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-10-26 12:24:56 +0000 |
commit | f9c199a1a2865bdb9e8fb318a48058d7e4bfaf64 (patch) | |
tree | 2ccd91b1d7eee0025421a4388aa415c0d2997e10 /Makefile | |
parent | d59e5356ca49548f9a3e51e03742adec72356a94 (diff) | |
download | haskell-f9c199a1a2865bdb9e8fb318a48058d7e4bfaf64.tar.gz |
install the Cabal docs, and make them show up in a binary distribution
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -64,7 +64,7 @@ else SUBDIRS_BUILD = gmp includes compat utils driver docs compiler rts endif -SUBDIRS = gmp includes compat utils driver docs rts libraries compiler +SUBDIRS = gmp includes compat utils driver docs rts libraries compiler libraries/Cabal/doc # Sanity check that all the boot libraries are in the tree, to catch # failure to run darcs-all. @@ -309,6 +309,7 @@ binary-dist:: $(MAKE) -C utils binary-dist DOING_BIN_DIST=YES $(MAKE) -C docs binary-dist DOING_BIN_DIST=YES $(MAKE) -C libraries binary-dist DOING_BIN_DIST=YES + $(MAKE) -C libraries/Cabal/doc binary-dist DOING_BIN_DIST=YES VARFILE=$(BIN_DIST_DIR)/Makefile-vars.in @@ -419,7 +420,7 @@ SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME) # # Files to include in source distributions # -SRC_DIST_DIRS += mk docs distrib bindisttest $(filter-out docs distrib,$(SUBDIRS)) +SRC_DIST_DIRS += mk docs distrib bindisttest $(filter-out docs distrib libraries/Cabal/doc,$(SUBDIRS)) SRC_DIST_FILES += \ configure.ac config.guess config.sub configure \ aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \ |