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

129 lines
2.6 KiB
Makefile
Raw Normal View History

2001-09-21 16:37:43 +04:00
#
2004-03-30 23:35:44 +04:00
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
# Copyright (C) 2004 Red Hat, Inc. All rights reserved.
2001-09-21 16:37:43 +04:00
#
2004-03-30 23:35:44 +04:00
# This file is part of the LVM2.
2001-09-21 16:37:43 +04:00
#
2004-03-30 23:35:44 +04:00
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2001-09-21 16:37:43 +04:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
2002-11-18 17:04:08 +03:00
ifeq ("@LVM1@", "shared")
SUBDIRS = format1
endif
2004-05-05 01:25:57 +04:00
ifeq ("@SNAPSHOTS@", "shared")
SUBDIRS += snapshot
endif
ifeq ("@MIRRORS@", "shared")
SUBDIRS += mirror
endif
2004-03-26 16:21:12 +03:00
SOURCES =\
2001-10-16 20:25:28 +04:00
activate/activate.c \
cache/lvmcache.c \
2002-11-18 17:04:08 +03:00
commands/toolcontext.c \
2001-09-21 16:37:43 +04:00
config/config.c \
datastruct/bitset.c \
2001-10-25 15:38:19 +04:00
datastruct/btree.c \
datastruct/hash.c \
2003-09-18 00:35:57 +04:00
datastruct/str_list.c \
device/dev-cache.c \
device/dev-io.c \
device/device.c \
display/display.c \
error/errseg.c \
filters/filter-composite.c \
filters/filter-persistent.c \
filters/filter-regex.c \
filters/filter-sysfs.c \
filters/filter-md.c \
2001-10-09 21:20:02 +04:00
filters/filter.c \
format_text/archive.c \
2001-12-20 14:52:54 +03:00
format_text/export.c \
format_text/flags.c \
2002-01-07 12:16:20 +03:00
format_text/format-text.c \
2001-12-20 14:52:54 +03:00
format_text/import.c \
2002-11-18 17:04:08 +03:00
format_text/import_vsn1.c \
2004-03-08 20:19:15 +03:00
format_text/tags.c \
2002-11-18 17:04:08 +03:00
format_text/text_label.c \
2002-01-11 13:43:32 +03:00
label/label.c \
locking/file_locking.c \
locking/locking.c \
locking/no_locking.c \
2001-09-21 16:37:43 +04:00
log/log.c \
metadata/lv_manip.c \
metadata/merge.c \
metadata/metadata.c \
2003-04-30 19:24:49 +04:00
metadata/mirror.c \
metadata/pv_map.c \
2004-05-05 01:25:57 +04:00
metadata/segtypes.c \
metadata/snapshot_manip.c \
2002-11-18 17:04:08 +03:00
misc/crc.c \
misc/lvm-file.c \
misc/lvm-string.c \
mm/memlock.c \
mm/pool.c \
regex/matcher.c \
regex/parse_rx.c \
regex/ttree.c \
report/report.c \
2004-05-05 01:25:57 +04:00
striped/striped.c \
uuid/uuid.c \
zero/zero.c
2002-11-18 17:04:08 +03:00
ifeq ("@LVM1@", "internal")
2004-03-26 16:21:12 +03:00
SOURCES +=\
2002-11-18 17:04:08 +03:00
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
2001-09-21 16:37:43 +04:00
2004-05-05 01:25:57 +04:00
ifeq ("@SNAPSHOTS@", "internal")
SOURCES += snapshot/snapshot.c
endif
ifeq ("@MIRRORS@", "internal")
SOURCES += mirror/mirrored.c
endif
ifeq ("@DEBUG@", "yes")
2004-03-26 16:21:12 +03:00
SOURCES += mm/dbg_malloc.c
endif
ifeq ("@DEVMAPPER@", "yes")
2004-03-26 16:21:12 +03:00
SOURCES +=\
activate/dev_manager.c \
activate/fs.c
endif
ifeq ("@HAVE_LIBDL@", "yes")
2004-03-26 16:21:12 +03:00
SOURCES +=\
2003-04-15 17:24:42 +04:00
locking/external_locking.c \
misc/sharedlib.c
endif
2004-04-07 18:08:22 +04:00
ifeq ("@HAVE_SELINUX@", "yes")
SOURCES += misc/selinux.c
endif
2004-03-26 16:21:12 +03:00
LIB_STATIC = liblvm.a
2001-09-21 16:37:43 +04:00
2004-04-05 20:29:37 +04:00
$(SUBDIRS): $(LIB_STATIC)
2001-09-21 16:37:43 +04:00
2004-03-26 16:21:12 +03:00
include ../make.tmpl
2001-09-21 16:37:43 +04:00