X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=cd27958eb8e562e6736bca1d402837299ba03a87;hb=6aeee9e07be70505d92218b560036a3220734358;hp=07878dd70a4174d376fd2217f20b811667d1d225;hpb=acd78d6dbda0108ffa899cb585114a21c5ed7499;p=ghc-base.git diff --git a/Makefile b/Makefile index 07878dd..cd27958 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,3 @@ -# ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.45 2003/07/24 12:19:57 ralf Exp $ - TOP=.. include $(TOP)/mk/boilerplate.mk @@ -11,6 +8,7 @@ SUBDIRS = cbits include ALL_DIRS = \ Control \ Control/Concurrent \ + Control/Parallel \ Control/Monad \ Control/Monad/ST \ Data \ @@ -19,7 +17,6 @@ ALL_DIRS = \ Data/Array/IO \ Data/STRef \ Debug \ - Debug/QuickCheck \ Foreign \ Foreign/C \ Foreign/Marshal \ @@ -33,7 +30,6 @@ ALL_DIRS = \ Text/Html \ Text/PrettyPrint \ Text/ParserCombinators \ - Text/ParserCombinators/Parsec \ Text/Regex \ Text/Show \ Text/Read @@ -43,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 @@ -58,6 +55,10 @@ SRC_HC_OPTS += -funbox-strict-fields # ----------------------------------------------------------------------------- # PrimOpWrappers +# These two lines are required for pre-processing ghc/compiler/prelude/primops.txt +SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR) +SRC_CPP_OPTS += ${GhcCppOpts} + ifeq "$(BootingFromHc)" "YES" GHC/PrimopWrappers.hs: touch GHC/PrimopWrappers.hs @@ -72,6 +73,14 @@ boot :: GHC/PrimopWrappers.hs EXTRA_SRCS += GHC/PrimopWrappers.hs CLEAN_FILES += GHC/PrimopWrappers.hs +# ----------------------------------------------------------------------------- + +STUBOBJS += \ + Control/Concurrent_stub.$(way_)o + +CLEAN_FILES += $(STUBOBJS) \ + Control/Concurrent_stub.[ch] + #----------------------------------------------------------------------------- # Building the library for GHCi # @@ -107,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 # ----------------------------------------------------------------------------- @@ -118,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