diff options
author | Ian Lynagh <igloo@earth.li> | 2011-01-23 15:14:08 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-01-23 15:14:08 +0000 |
commit | eb3a1aecac72d22c618b4050fb88eac9055b527a (patch) | |
tree | b86df2bf98b480a27d41ae0a1938243c673c0225 /rules/build-dependencies.mk | |
parent | dd47428295d89eb6bbf91316ac4f5a6e98b1ec70 (diff) | |
download | haskell-eb3a1aecac72d22c618b4050fb88eac9055b527a.tar.gz |
Add build system profiling to build system
Diffstat (limited to 'rules/build-dependencies.mk')
-rw-r--r-- | rules/build-dependencies.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rules/build-dependencies.mk b/rules/build-dependencies.mk index fa4e2d2d8d..3aa176cf05 100644 --- a/rules/build-dependencies.mk +++ b/rules/build-dependencies.mk @@ -12,6 +12,7 @@ define build-dependencies $(call trace, build-dependencies($1,$2,$3)) +$(call profStart, build-dependencies($1,$2,$3)) # $1 = dir # $2 = distdir # $3 = GHC stage to use (0 == bootstrapping compiler) @@ -73,6 +74,7 @@ endif # $1_$2_NO_BUILD_DEPS # Note sed magic above: mkdependC can't do -odir stuff, so we have to # munge the dependencies it generates to refer to the correct targets. +$(call profEnd, build-dependencies($1,$2,$3)) endef # This comment is outside the "define addCFileDeps" as that definition |