1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 20:25:52 +03:00
lvm2/lib/Makefile.in

44 lines
721 B
Makefile
Raw Normal View History

2001-09-21 16:37:43 +04:00
#
# Copyright (C) 2001 Sistina Software (UK) Limited
2001-09-21 16:37:43 +04:00
#
# This file is released under the GPL.
2001-09-21 16:37:43 +04:00
#
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
SOURCES=\
2001-10-16 20:25:28 +04:00
activate/activate.c \
2001-09-21 16:37:43 +04:00
config/config.c \
datastruct/bitset.c \
datastruct/hash.c \
device/dev-cache.c \
device/dev-io.c \
device/device.c \
2001-10-09 21:20:02 +04:00
filters/filter.c \
filters/filter-regex.c \
2001-10-08 13:45:16 +04:00
format1/disk-rep.c \
2001-10-08 12:47:27 +04:00
format1/format1.c \
2001-10-09 18:26:45 +04:00
format1/import-export.c \
format1/layout.c \
format1/vg_number.c \
2001-09-21 16:37:43 +04:00
log/log.c \
metadata/metadata.c \
mm/dbg_malloc.c \
mm/pool.c \
regex/parse_rx.c \
regex/matcher.c \
regex/ttree.c \
uuid/uuid.c
2001-09-21 16:37:43 +04:00
TARGETS=liblvm.a
include ../make.tmpl
liblvm.a: $(OBJECTS)
$(RM) $@
$(AR) r $@ $(OBJECTS)
$(RANLIB) $@