aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-04-12 03:49:44 +0000
committerlloyd <[email protected]>2015-04-12 03:49:44 +0000
commit6e2bf7b795a0f1a9731f23ec4fa69a3e4e716cdb (patch)
tree9d3acb25a35d106d41d8d2867c9aa3ddc71d1563 /src/build-data/makefile
parent62947773cedb0c9534c5df91271db9a9414e6e2a (diff)
Add coverage checking with gcov/lcov
Diffstat (limited to 'src/build-data/makefile')
-rw-r--r--src/build-data/makefile/coverage.in4
-rw-r--r--src/build-data/makefile/gmake.in5
2 files changed, 7 insertions, 2 deletions
diff --git a/src/build-data/makefile/coverage.in b/src/build-data/makefile/coverage.in
new file mode 100644
index 000000000..9547c4151
--- /dev/null
+++ b/src/build-data/makefile/coverage.in
@@ -0,0 +1,4 @@
+
+lcov:
+ lcov --directory build/obj/lib/ --directory src/lib --no-external --capture --output-file botan.info
+ genhtml botan.info -o coverage/
diff --git a/src/build-data/makefile/gmake.in b/src/build-data/makefile/gmake.in
index c45cd2940..e8c480a21 100644
--- a/src/build-data/makefile/gmake.in
+++ b/src/build-data/makefile/gmake.in
@@ -37,8 +37,7 @@ $(STATIC_LIB): $(LIBOBJS)
$(AR) $(STATIC_LIB) $(LIBOBJS)
$(RANLIB) $(STATIC_LIB)
-# Fake Targets
-.PHONY = clean distclean docs website install valgrind
+%{coverage_in}
SPHINX_CONFIG = %{sphinx_config_dir}
SPHINX_OPTS = -b html
@@ -46,6 +45,8 @@ SPHINX_OPTS = -b html
WEBSITE_DIR=%{doc_output_dir}/website
WEBSITE_SRC_DIR=%{doc_output_dir}/website-src
+.PHONY = clean distclean docs website install valgrind
+
clean:
$(RM) %{libobj_dir}/* %{testobj_dir}/* %{appobj_dir}/*
$(RM) $(LIBRARIES) $(SYMLINK) $(SONAME) $(APP) $(TEST)