diff options
author | andy@galois.com <unknown> | 2007-06-26 05:11:36 +0000 |
---|---|---|
committer | andy@galois.com <unknown> | 2007-06-26 05:11:36 +0000 |
commit | a8ef5634ef302acac8fb70fcdeddbdbdfe2a18d9 (patch) | |
tree | 968b3f9128112b8026dce19d06127e4c8662c51c /compat | |
parent | 5598dbc2d946f94ec4253450987d7a56336ef54a (diff) | |
download | haskell-a8ef5634ef302acac8fb70fcdeddbdbdfe2a18d9.tar.gz |
Adding hpc lib as part of the compat 'package'
Diffstat (limited to 'compat')
-rw-r--r-- | compat/Makefile | 4 | ||||
-rw-r--r-- | compat/Trace/Hpc/Mix.hs | 3 | ||||
-rw-r--r-- | compat/Trace/Hpc/Util.hs | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/compat/Makefile b/compat/Makefile index 61cc6c04fc..b09e1c2322 100644 --- a/compat/Makefile +++ b/compat/Makefile @@ -10,6 +10,7 @@ ALL_DIRS = \ System \ System/FilePath \ System/Directory \ + Trace/Hpc \ cbits SplitObjs=NO @@ -79,6 +80,9 @@ Distribution/ParseUtils.$(way_)o : $(FPTOOLS_TOP)/libraries/Cabal/Distribution/ Distribution/Compiler.$(way_)o : $(FPTOOLS_TOP)/libraries/Cabal/Distribution/Compiler.hs Distribution/Version.$(way_)o : $(FPTOOLS_TOP)/libraries/Cabal/Distribution/Version.hs Language/Haskell/Extension.$(way_)o : $(FPTOOLS_TOP)/libraries/Cabal/Language/Haskell/Extension.hs +Trace/Hpc/Mix.$(way_)o : $(FPTOOLS_TOP)/libraries/hpc/Trace/Hpc/Mix.hs +Trace/Hpc/Util.$(way_)o : $(FPTOOLS_TOP)/libraries/hpc/Trace/Hpc/Util.hs + cbits/unicode.o : $(FPTOOLS_TOP)/libraries/base/cbits/WCsubst.c $(FPTOOLS_TOP)/libraries/base/include/WCsubst.h SRC_CC_OPTS += -I$(FPTOOLS_TOP)/libraries/base/cbits -I$(FPTOOLS_TOP)/libraries/base/include diff --git a/compat/Trace/Hpc/Mix.hs b/compat/Trace/Hpc/Mix.hs new file mode 100644 index 0000000000..49110a5c38 --- /dev/null +++ b/compat/Trace/Hpc/Mix.hs @@ -0,0 +1,3 @@ +{-# OPTIONS -cpp #-} +#include "hpc/Trace/Hpc/Mix.hs" +-- dummy comment diff --git a/compat/Trace/Hpc/Util.hs b/compat/Trace/Hpc/Util.hs new file mode 100644 index 0000000000..9be55097c6 --- /dev/null +++ b/compat/Trace/Hpc/Util.hs @@ -0,0 +1,3 @@ +{-# OPTIONS -cpp #-} +#include "hpc/Trace/Hpc/Util.hs" +-- dummy comment |