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

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

SOURCES=\
	activate/activate.c \
	config/config.c \
	datastruct/bitset.c \
	datastruct/hash.c \
	device/btree.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 \
	format1/disk-rep.c \
	format1/format1.c \
	format1/import-export.c \
	format1/layout.c \
	format1/vg_number.c \
	log/log.c \
	metadata/metadata.c \
	mm/dbg_malloc.c \
	mm/pool.c \
	regex/matcher.c \
	regex/parse_rx.c \
	regex/ttree.c \
	uuid/uuid.c

TARGETS=liblvm.a

include ../make.tmpl

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