summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorPetr Rockai <prockai@redhat.com>2008-11-10 14:04:12 +0000
committerPetr Rockai <prockai@redhat.com>2008-11-10 14:04:12 +0000
commit8d514d66e1d1ebe4e56814e80f251b109c0576a2 (patch)
tree04eab70f94f59b57e946169d74ab3cdb122fb16b /Makefile.in
parent5e57517055850df2617390641f14c7767d8d025f (diff)
downloadlvm2-8d514d66e1d1ebe4e56814e80f251b109c0576a2.tar.gz
lvm2-8d514d66e1d1ebe4e56814e80f251b109c0576a2.tar.xz
lvm2-8d514d66e1d1ebe4e56814e80f251b109c0576a2.zip
Include libdm in lcov reports.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 5196e7bc..2009fa1f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -84,18 +84,21 @@ endif
lcov-reset:
$(LCOV) -d $(top_srcdir)/dmeventd --zerocounters
+ $(LCOV) -d $(top_srcdir)/libdm --zerocounters
$(LCOV) -d $(top_srcdir)/lib --zerocounters
$(LCOV) -d $(top_srcdir)/tools --zerocounters
lcov: all
$(RM) -rf $(LCOV_REPORTS_DIR)
$(MKDIR_P) $(LCOV_REPORTS_DIR)
+ $(LCOV) -b ${top_srcdir}/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info
$(LCOV) -b $(top_srcdir)/lib -d $(top_srcdir)/lib -c -o $(LCOV_REPORTS_DIR)/lib.info
$(LCOV) -b $(top_srcdir)/tools -d $(top_srcdir)/tools -c -o $(LCOV_REPORTS_DIR)/tools.info
DMEVENTD_INFO="$(LCOV_REPORTS_DIR)/dmeventd.info" ;\
DMEVENTD_INFO_A="-a $$DMEVENTDINFO" ;\
$(LCOV) -b $(top_srcdir)/dmeventd -d $(top_srcdir)/dmeventd -c -o $$DMEVENTD_INFO || DMEVENTD_INFO_A="" ;\
$(LCOV) $$DMEVENTD_INFO_A -a $(LCOV_REPORTS_DIR)/lib.info \
+ -a $(LCOV_REPORTS_DIR)/libdm.info \
-a $(LCOV_REPORTS_DIR)/tools.info \
-o $(LCOV_REPORTS_DIR)/lvm.info
ifneq ("@GENHTML@", "")