mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
faa556e759
A substantial speed-up - particularly in readline mode. If the hints turn out to be wrong, the relevant parts get thrown away. vgscan destroys it totally. In both cases it then rebuilds itself as required.
54 lines
952 B
Makefile
54 lines
952 B
Makefile
#
|
|
# 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 \
|
|
activate/fs.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 \
|
|
format1/disk-rep.c \
|
|
format1/format1.c \
|
|
format1/import-export.c \
|
|
format1/import-extents.c \
|
|
format1/layout.c \
|
|
format1/vg_number.c \
|
|
label/label.c \
|
|
log/log.c \
|
|
metadata/lv_manip.c \
|
|
metadata/metadata.c \
|
|
metadata/pv_map.c \
|
|
mm/dbg_malloc.c \
|
|
mm/pool.c \
|
|
regex/matcher.c \
|
|
regex/parse_rx.c \
|
|
regex/ttree.c \
|
|
uuid/uuid.c \
|
|
vgcache/vgcache.c
|
|
|
|
TARGETS=liblvm.a
|
|
|
|
include ../make.tmpl
|
|
|
|
liblvm.a: $(OBJECTS)
|
|
$(RM) $@
|
|
$(AR) r $@ $(OBJECTS)
|
|
$(RANLIB) $@
|
|
|