summaryrefslogtreecommitdiffstats
path: root/Makefile.in
blob: 2009fa1fdf874f96f9301cd842123c80dae91832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
# Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@

SUBDIRS = doc include man scripts

ifeq ("@INTL@", "yes")
  SUBDIRS += po
endif

SUBDIRS += lib tools daemons libdm

ifeq ($(MAKECMDGOALS),distclean)
  SUBDIRS += daemons/clvmd \
	     daemons/dmeventd/plugins \
	     lib/format1 \
	     lib/format_pool \
	     lib/locking \
	     lib/mirror \
	     lib/snapshot \
	     test \
	     po
  DISTCLEAN_TARGETS += lib/misc/configure.h
  DISTCLEAN_DIRS += lcov_reports*
endif

include make.tmpl

libdm: include
lib: libdm
daemons: lib
tools: lib device-mapper
po: tools daemons

libdm.device-mapper: include.device-mapper
daemons.device-mapper: libdm.device-mapper
tools.device-mapper: libdm.device-mapper
device-mapper: tools.device-mapper daemons.device-mapper man.device-mapper

ifeq ("@INTL@", "yes")
lib.pofile: include.pofile
tools.pofile: lib.pofile
daemons.pofile: lib.pofile
po.pofile: tools.pofile daemons.pofile
pofile: po.pofile
endif

ifneq ("@CFLOW_CMD@", "")
tools.cflow: lib.cflow
cflow: tools.cflow
endif

ifneq ("@CSCOPE_CMD@", "")
cscope.out: tools
	@CSCOPE_CMD@ -b -R
all: cscope.out
endif

check: all
	$(MAKE) -C test all

ifneq ("@LCOV@", "")
.PHONY: lcov-reset lcov lcov-dated

ifeq ($(MAKECMDGOALS),lcov-dated)
LCOV_REPORTS_DIR=$(top_srcdir)/lcov_reports-$(shell date +%Y%m%d%k%M%S)
else
LCOV_REPORTS_DIR=$(top_srcdir)/lcov_reports
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@", "")
	$(GENHTML) -o $(LCOV_REPORTS_DIR) -p $(top_srcdir) $(LCOV_REPORTS_DIR)/lvm.info
endif

lcov-dated: lcov

endif