1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-14 23:24:55 +03:00
lvm2/lib/Makefile.in

166 lines
3.4 KiB
Makefile
Raw Normal View History

2001-09-21 12:37:43 +00:00
#
2004-03-30 19:35:44 +00:00
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
# Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
2001-09-21 12:37:43 +00:00
#
# This file is part of LVM2.
2001-09-21 12:37:43 +00:00
#
2004-03-30 19:35:44 +00: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 12:37:43 +00:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
2001-09-21 12:37:43 +00:00
VPATH = @srcdir@
2002-11-18 14:04:08 +00:00
ifeq ("@LVM1@", "shared")
SUBDIRS = format1
endif
2004-06-07 19:10:21 +00:00
ifeq ("@POOL@", "shared")
SUBDIRS += format_pool
endif
2004-05-04 21:25:57 +00:00
ifeq ("@SNAPSHOTS@", "shared")
SUBDIRS += snapshot
endif
ifeq ("@MIRRORS@", "shared")
SUBDIRS += mirror
endif
2004-03-26 13:21:12 +00:00
SOURCES =\
2001-10-16 16:25:28 +00:00
activate/activate.c \
cache/lvmcache.c \
2002-11-18 14:04:08 +00:00
commands/toolcontext.c \
2001-09-21 12:37:43 +00:00
config/config.c \
2001-10-25 11:38:19 +00:00
datastruct/btree.c \
2003-09-17 20:35:57 +00:00
datastruct/str_list.c \
device/dev-cache.c \
device/dev-io.c \
device/dev-md.c \
device/dev-swap.c \
device/device.c \
display/display.c \
error/errseg.c \
unknown/unknown.c \
filters/filter-composite.c \
filters/filter-persistent.c \
filters/filter-regex.c \
filters/filter-sysfs.c \
filters/filter-md.c \
2001-10-09 17:20:02 +00:00
filters/filter.c \
format_text/archive.c \
format_text/archiver.c \
2001-12-20 11:52:54 +00:00
format_text/export.c \
format_text/flags.c \
2002-01-07 09:16:20 +00:00
format_text/format-text.c \
2001-12-20 11:52:54 +00:00
format_text/import.c \
2002-11-18 14:04:08 +00:00
format_text/import_vsn1.c \
2004-03-08 17:19:15 +00:00
format_text/tags.c \
2002-11-18 14:04:08 +00:00
format_text/text_label.c \
freeseg/freeseg.c \
2002-01-11 10:43:32 +00:00
label/label.c \
locking/file_locking.c \
locking/locking.c \
locking/no_locking.c \
2001-09-21 12:37:43 +00:00
log/log.c \
metadata/lv_manip.c \
metadata/merge.c \
metadata/metadata.c \
2003-04-30 15:24:49 +00:00
metadata/mirror.c \
2005-04-19 20:58:25 +00:00
metadata/pv_manip.c \
metadata/pv_map.c \
2004-09-16 18:40:56 +00:00
metadata/segtype.c \
metadata/snapshot_manip.c \
2002-11-18 14:04:08 +00:00
misc/crc.c \
misc/lvm-exec.c \
misc/lvm-file.c \
2008-10-30 17:27:28 +00:00
misc/lvm-globals.c \
misc/lvm-string.c \
2006-08-17 18:23:44 +00:00
misc/lvm-wrappers.c \
misc/util.c \
mm/memlock.c \
report/report.c \
2004-05-04 21:25:57 +00:00
striped/striped.c \
uuid/uuid.c \
zero/zero.c
2002-11-18 14:04:08 +00:00
ifeq ("@HAVE_REALTIME@", "yes")
SOURCES +=\
misc/timestamp.c
endif
2002-11-18 14:04:08 +00:00
ifeq ("@LVM1@", "internal")
2004-03-26 13:21:12 +00:00
SOURCES +=\
2002-11-18 14:04:08 +00: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 12:37:43 +00:00
2004-06-07 19:10:21 +00:00
ifeq ("@POOL@", "internal")
SOURCES +=\
format_pool/disk_rep.c \
format_pool/format_pool.c \
format_pool/import_export.c \
format_pool/pool_label.c
endif
2004-06-24 08:02:38 +00:00
ifeq ("@CLUSTER@", "internal")
SOURCES += locking/cluster_locking.c
endif
ifeq ("@CLUSTER@", "shared")
SUBDIRS += locking
endif
2004-05-04 21:25:57 +00:00
ifeq ("@SNAPSHOTS@", "internal")
SOURCES += snapshot/snapshot.c
endif
ifeq ("@MIRRORS@", "internal")
SOURCES += mirror/mirrored.c
endif
ifeq ("@DEVMAPPER@", "yes")
2004-03-26 13:21:12 +00:00
SOURCES +=\
activate/dev_manager.c \
activate/fs.c
endif
ifeq ("@HAVE_LIBDL@", "yes")
2004-03-26 13:21:12 +00:00
SOURCES +=\
2003-04-15 13:24:42 +00:00
locking/external_locking.c \
misc/sharedlib.c
endif
2005-12-02 20:35:07 +00:00
ifeq ("@DMEVENTD@", "yes")
CLDFLAGS += -L$(top_builddir)/daemons/dmeventd
LIBS += -ldevmapper-event
2005-12-02 20:35:07 +00:00
endif
LIB_NAME = liblvm-internal
LIB_STATIC = $(LIB_NAME).a
2001-09-21 12:37:43 +00:00
CLEAN_TARGETS += $(LIB_NAME).cflow
include $(top_builddir)/make.tmpl
2001-09-21 12:37:43 +00:00
$(SUBDIRS): $(LIB_STATIC)
$(LIB_NAME).cflow: $(SOURCES)
set -e; (echo -n "SOURCES += "; \
echo $(SOURCES) | \
sed "s/^/ /;s/ / $(top_srcdir)\/lib\//g;s/$$//"; \
) > $@
cflow: $(LIB_NAME).cflow