diff options
author | Prakash Surya <[email protected]> | 2017-09-22 18:49:57 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-09-22 18:49:57 -0700 |
commit | acf044420b134b022da5c866b19df69934ad3778 (patch) | |
tree | 0990c6731f83d04700411617c9d60038b7ab8b80 /Makefile.am | |
parent | d410c6d9fd4db812a1009e1603c89f1e222e1875 (diff) |
Add support for "--enable-code-coverage" option
This change adds support for a new option that can be passed to the
configure script: "--enable-code-coverage". Further, the "--enable-gcov"
option has been removed, as this new option provides the same
functionality (plus more).
When using this new option the following make targets are available:
* check-code-coverage
* code-coverage-capture
* code-coverage-clean
Note: these make targets can only be run from the root of the project.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Prakash Surya <[email protected]>
Closes #6670
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 583b08b57..53a852832 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,6 +23,8 @@ EXTRA_DIST = autogen.sh copy-builtin EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown OPENSOLARIS.LICENSE +@CODE_COVERAGE_RULES@ + distclean-local:: -$(RM) -R autom4te*.cache -find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \ |