[project @ 2004-03-19 20:31:50 by panne]
[ghc-base.git] / Makefile
index a557fe1..640c9e7 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 \
@@ -35,11 +36,12 @@ ALL_DIRS = \
 
 PACKAGE = base
 
-SRC_HC_OPTS += -fglasgow-exts -cpp -Iinclude -\#include HsBase.h
+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
 
 # -----------------------------------------------------------------------------
 
@@ -125,7 +127,7 @@ ifeq "$(OBJECT_FILEFORMAT)" "PEi"
 HSbase.o : $(GHCI_LIBOBJS)
        $(LD) -r $(LD_X) -o HSbase1.o $(filter     GHC/%, $(GHCI_LIBOBJS))
        $(LD) -r $(LD_X) -o HSbase2.o $(filter     Text/%, $(GHCI_LIBOBJS))
-       $(LD) -r $(LD_X) -o HSbase3.o $(filter-out GHC/% Text/%, $(GHCI_LIBOBJS))
+       $(LD) -r $(LD_X) -o HSbase3.o $(filter-out GHC/% Text/%, $(GHCI_LIBOBJS) $(STUBOBJS))
        @touch HSbase.o
 endif # OBJECT_FILEFORMAT = PEi