]> sourceware.org Git - lvm2.git/blob - Makefile.in
Correct typo in comments: s/is part of the LVM2/is part of LVM2/.
[lvm2.git] / Makefile.in
1 #
2 # Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
3 # Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
4 #
5 # This file is part of LVM2.
6 #
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.
10 #
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
14
15 srcdir = @srcdir@
16 top_srcdir = @top_srcdir@
17 VPATH = @srcdir@
18
19 SUBDIRS = doc include man scripts
20
21 ifeq ("@INTL@", "yes")
22 SUBDIRS += po
23 endif
24
25 SUBDIRS += lib tools daemons
26
27 ifeq ("@DMEVENTD@", "yes")
28 SUBDIRS += dmeventd
29 endif
30
31 ifeq ($(MAKECMDGOALS),distclean)
32 SUBDIRS += daemons/clvmd \
33 dmeventd \
34 lib/format1 \
35 lib/format_pool \
36 lib/locking \
37 lib/mirror \
38 lib/snapshot \
39 po \
40 test/mm test/device test/format1 test/regex test/filters
41 DISTCLEAN_TARGETS += lib/misc/configure.h
42 endif
43
44 include make.tmpl
45
46 daemons: lib
47 lib: include
48 tools: lib
49 dmeventd: tools
50 po: tools daemons dmeventd
51
52 ifeq ("@INTL@", "yes")
53 lib.pofile: include.pofile
54 tools.pofile: lib.pofile
55 daemons.pofile: lib.pofile
56 dmeventd.pofile: tools.pofile
57 po.pofile: tools.pofile daemons.pofile dmeventd.pofile
58 pofile: po.pofile
59 endif
60
61 ifneq ("@CFLOW_CMD@", "")
62 tools.cflow: lib.cflow
63 cflow: tools.cflow
64 endif
65
66 ifneq ("@CSCOPE_CMD@", "")
67 cscope.out: tools
68 @CSCOPE_CMD@ -b -R
69 all: cscope.out
70 endif
71
72 check: all
73 $(MAKE) -C test all
This page took 0.041411 seconds and 6 git commands to generate.