diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-27 23:29:50 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-27 23:29:50 +0100 |
commit | aedaba990f02fd1f613c1830d3774843cf8d5f0d (patch) | |
tree | 9ed368b79f09ca600cf3cb285288a624023d9ff2 | |
parent | 86a22b6fad4c99db10f25a9d454e1ce9e7fdb5c4 (diff) | |
download | samba-aedaba990f02fd1f613c1830d3774843cf8d5f0d.tar.gz samba-aedaba990f02fd1f613c1830d3774843cf8d5f0d.tar.bz2 samba-aedaba990f02fd1f613c1830d3774843cf8d5f0d.zip |
Split up lcov target.
(This used to be commit 38f455e0054acc1fdaea267e03f8aad337309cf2)
-rw-r--r-- | source4/torture/config.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source4/torture/config.mk b/source4/torture/config.mk index 40f6bbf1ed..4113cab064 100644 --- a/source4/torture/config.mk +++ b/source4/torture/config.mk @@ -327,9 +327,14 @@ gcov: test do $(GCOV) -p -o $$I $$I/*.c; \ done -lcov: test +samba.info: test -rm heimdal/lib/*/{lex,parse}.{gcda,gcno} lcov --base-directory `pwd` --directory . --capture --output-file samba.info - genhtml -o coverage samba.info + +lcov: samba.info + genhtml -o coverage $< testcov-html:: lcov + +clean:: + @rm -f samba.info |