]> sourceware.org Git - lvm2.git/blame - Makefile.in
Right, a simple build (without options) is working again.
[lvm2.git] / Makefile.in
CommitLineData
795ca3e5 1#
6606c3ae 2# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
e0a728aa 3# Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
795ca3e5 4#
7f8f8bfa 5# This file is part of LVM2.
795ca3e5 6#
6606c3ae
AK
7# This copyrighted material is made available to anyone wishing to use,
8# modify, copy, or redistribute it subject to the terms and conditions
9# of the GNU General Public License v.2.
795ca3e5 10#
6606c3ae
AK
11# You should have received a copy of the GNU General Public License
12# along with this program; if not, write to the Free Software Foundation,
13# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
795ca3e5
AK
14
15srcdir = @srcdir@
16top_srcdir = @top_srcdir@
17VPATH = @srcdir@
18
4eee5764 19SUBDIRS = doc include man scripts
69792976
AK
20
21ifeq ("@INTL@", "yes")
22 SUBDIRS += po
23endif
24
0782ad50 25SUBDIRS += lib tools daemons libdm
795ca3e5 26
5b82db9a 27ifeq ($(MAKECMDGOALS),distclean)
d3c8211f 28 SUBDIRS += daemons/clvmd \
b7edb5bf 29 daemons/dmeventd/plugins \
d3c8211f 30 lib/format1 \
d8ac0fbc 31 lib/format_pool \
d3c8211f 32 lib/locking \
4922197a
AK
33 lib/mirror \
34 lib/snapshot \
e0a728aa
JM
35 test \
36 po
aba30ebc 37 DISTCLEAN_TARGETS += lib/misc/configure.h
5556819a 38 DISTCLEAN_DIRS += lcov_reports*
5b82db9a
AK
39endif
40
795ca3e5
AK
41include make.tmpl
42
0782ad50
AK
43libdm: include
44lib: libdm
59376640 45daemons: lib
69792976 46tools: lib
b7edb5bf 47po: tools daemons
751acb38 48
2c44337b 49libdm.device-mapper: include.device-mapper
0782ad50 50tools.device-mapper: libdm.device-mapper
2c44337b 51device-mapper: tools.device-mapper
0782ad50 52
69792976
AK
53ifeq ("@INTL@", "yes")
54lib.pofile: include.pofile
55tools.pofile: lib.pofile
d3c8211f 56daemons.pofile: lib.pofile
b7edb5bf 57po.pofile: tools.pofile daemons.pofile
69792976
AK
58pofile: po.pofile
59endif
751acb38 60
8a2fc586
AK
61ifneq ("@CFLOW_CMD@", "")
62tools.cflow: lib.cflow
63cflow: tools.cflow
64endif
65
66ifneq ("@CSCOPE_CMD@", "")
67cscope.out: tools
68 @CSCOPE_CMD@ -b -R
69all: cscope.out
70endif
f0f8fbc6
JM
71
72check: all
73 $(MAKE) -C test all
fddafd51
ZK
74
75ifneq ("@LCOV@", "")
5556819a 76.PHONY: lcov-reset lcov lcov-dated
fddafd51 77
5556819a
AK
78ifeq ($(MAKECMDGOALS),lcov-dated)
79LCOV_REPORTS_DIR=$(top_srcdir)/lcov_reports-$(shell date +%Y%m%d%k%M%S)
80else
81LCOV_REPORTS_DIR=$(top_srcdir)/lcov_reports
82endif
fddafd51 83
5556819a 84lcov-reset:
fddafd51
ZK
85 $(LCOV) -d $(top_srcdir)/dmeventd --zerocounters
86 $(LCOV) -d $(top_srcdir)/lib --zerocounters
87 $(LCOV) -d $(top_srcdir)/tools --zerocounters
88
5556819a
AK
89lcov: all
90 $(RM) -rf $(LCOV_REPORTS_DIR)
91 $(MKDIR_P) $(LCOV_REPORTS_DIR)
92 $(LCOV) -b $(top_srcdir)/lib -d $(top_srcdir)/lib -c -o $(LCOV_REPORTS_DIR)/lib.info
93 $(LCOV) -b $(top_srcdir)/tools -d $(top_srcdir)/tools -c -o $(LCOV_REPORTS_DIR)/tools.info
94 DMEVENTD_INFO="$(LCOV_REPORTS_DIR)/dmeventd.info" ;\
95 DMEVENTD_INFO_A="-a $$DMEVENTDINFO" ;\
96 $(LCOV) -b $(top_srcdir)/dmeventd -d $(top_srcdir)/dmeventd -c -o $$DMEVENTD_INFO || DMEVENTD_INFO_A="" ;\
97 $(LCOV) $$DMEVENTD_INFO_A -a $(LCOV_REPORTS_DIR)/lib.info \
98 -a $(LCOV_REPORTS_DIR)/tools.info \
99 -o $(LCOV_REPORTS_DIR)/lvm.info
fddafd51 100ifneq ("@GENHTML@", "")
5556819a 101 $(GENHTML) -o $(LCOV_REPORTS_DIR) -p $(top_srcdir) $(LCOV_REPORTS_DIR)/lvm.info
fddafd51
ZK
102endif
103
5556819a 104lcov-dated: lcov
fddafd51
ZK
105
106endif
This page took 0.049057 seconds and 5 git commands to generate.