]> sourceware.org Git - lvm2.git/blob - lib/Makefile.in
Update copyright notices.
[lvm2.git] / lib / Makefile.in
1 #
2 # Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
3 # Copyright (C) 2004 Red Hat, Inc. All rights reserved.
4 #
5 # This file is part of the 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 ifeq ("@LVM1@", "shared")
20 SUBDIRS = format1
21 endif
22
23 SOURCES =\
24 activate/activate.c \
25 cache/lvmcache.c \
26 commands/toolcontext.c \
27 config/config.c \
28 datastruct/bitset.c \
29 datastruct/btree.c \
30 datastruct/hash.c \
31 datastruct/str_list.c \
32 device/dev-cache.c \
33 device/dev-io.c \
34 device/device.c \
35 display/display.c \
36 filters/filter-composite.c \
37 filters/filter-persistent.c \
38 filters/filter-regex.c \
39 filters/filter-sysfs.c \
40 filters/filter.c \
41 format_text/archive.c \
42 format_text/export.c \
43 format_text/flags.c \
44 format_text/format-text.c \
45 format_text/import.c \
46 format_text/import_vsn1.c \
47 format_text/tags.c \
48 format_text/text_label.c \
49 label/label.c \
50 locking/file_locking.c \
51 locking/locking.c \
52 locking/no_locking.c \
53 log/log.c \
54 metadata/lv_manip.c \
55 metadata/merge.c \
56 metadata/metadata.c \
57 metadata/mirror.c \
58 metadata/pv_map.c \
59 metadata/snapshot_manip.c \
60 misc/crc.c \
61 misc/lvm-file.c \
62 misc/lvm-string.c \
63 mm/memlock.c \
64 mm/pool.c \
65 regex/matcher.c \
66 regex/parse_rx.c \
67 regex/ttree.c \
68 report/report.c \
69 uuid/uuid.c
70
71 ifeq ("@LVM1@", "internal")
72 SOURCES +=\
73 format1/disk-rep.c \
74 format1/format1.c \
75 format1/import-export.c \
76 format1/import-extents.c \
77 format1/layout.c \
78 format1/lvm1-label.c \
79 format1/vg_number.c
80 endif
81
82 ifeq ("@DEBUG@", "yes")
83 SOURCES += mm/dbg_malloc.c
84 endif
85
86 ifeq ("@DEVMAPPER@", "yes")
87 SOURCES +=\
88 activate/dev_manager.c \
89 activate/fs.c
90 endif
91
92 ifeq ("@HAVE_LIBDL@", "yes")
93 SOURCES +=\
94 locking/external_locking.c \
95 misc/sharedlib.c
96 endif
97
98 LIB_STATIC = liblvm.a
99
100 TARGETS = $(LIB_STATIC)
101
102 include ../make.tmpl
103
This page took 0.042453 seconds and 6 git commands to generate.