[project @ 2003-11-15 22:31:16 by panne]
[ghc-base.git] / Makefile
index a557fe1..26a6300 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@ SUBDIRS = cbits include
 ALL_DIRS = \
        Control \
        Control/Concurrent \
+       Control/Parallel \
        Control/Monad \
        Control/Monad/ST \
        Data \
@@ -38,8 +39,9 @@ PACKAGE = base
 SRC_HC_OPTS += -fglasgow-exts -cpp -Iinclude -\#include HsBase.h
 SRC_HSC2HS_OPTS += -Iinclude -I$(FPTOOLS_TOP)/ghc/includes
 
-# Make sure we can get hold of regex.h
+# If there is no system-supplied POSIX regex library, use our own
 ifneq "$(HavePosixRegex)" "YES"
+# Make sure we can get hold of regex.h
 SRC_HC_OPTS     += -Icbits/regex
 SRC_HSC2HS_OPTS += -Icbits/regex
 endif
@@ -114,8 +116,8 @@ EXCLUDED_HADDOCK_SRCS = \
        GHC/PrimopWrappers.hs \
        GHC/PArr.hs
 
-SRC_HADDOCK_OPTS += -t "Haskell Core Libraries (base package)" \
-       --no-implicit-prelude -p prologue.txt
+SRC_HADDOCK_OPTS += -t "Haskell Hierarchical Libraries ($(PACKAGE) package)" \
+       --no-implicit-prelude
 
 # -----------------------------------------------------------------------------