summaryrefslogtreecommitdiffstats
path: root/lib/Makefile.in
blob: 880ecc6fd2d702380256299de5afc9ec3047903a (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
#
# Copyright (C) 2001 Sistina Software (UK) Limited
#
# This file is released under the GPL.
#

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

ifeq ("@LVM1@", "shared")
  SUBDIRS = format1
endif

SOURCES=\
	activate/activate.c \
	cache/cache.c \
	commands/toolcontext.c \
	config/config.c \
	datastruct/bitset.c \
	datastruct/btree.c \
	datastruct/hash.c \
	device/dev-cache.c \
	device/dev-io.c \
	device/device.c \
	display/display.c \
	filters/filter-composite.c \
	filters/filter-persistent.c \
	filters/filter-regex.c \
	filters/filter.c \
	format_text/archive.c \
	format_text/export.c \
	format_text/flags.c \
	format_text/format-text.c \
	format_text/import.c \
	format_text/import_vsn1.c \
	format_text/text_label.c \
	label/label.c \
	locking/file_locking.c \
	locking/locking.c \
	locking/no_locking.c \
	log/log.c \
	metadata/lv_manip.c \
	metadata/merge.c \
	metadata/metadata.c \
	metadata/pv_map.c \
	metadata/snapshot_manip.c \
	misc/crc.c \
	misc/lvm-file.c \
	misc/lvm-string.c \
	misc/sharedlib.c \
	mm/pool.c \
	regex/matcher.c \
	regex/parse_rx.c \
	regex/ttree.c \
	report/report.c \
	uuid/uuid.c 

ifeq ("@LVM1@", "internal")
  SOURCES+=\
	format1/disk-rep.c \
	format1/format1.c \
	format1/import-export.c \
	format1/import-extents.c \
	format1/layout.c \
	format1/lvm1-label.c \
	format1/vg_number.c
endif

ifeq ("@DEBUG@", "yes")
  SOURCES+=\
	mm/dbg_malloc.c
endif

ifeq ("@DEVMAPPER@", "yes")
  SOURCES+=\
	activate/dev_manager.c \
	activate/fs.c
endif

ifeq ("@HAVE_LIBDL@", "yes")
  SOURCES+=\
	locking/external_locking.c
endif

TARGETS=liblvm.a

include ../make.tmpl

liblvm.a: $(OBJECTS)
	$(RM) $@
	$(AR) r $@ $(OBJECTS)
	$(RANLIB) $@