summaryrefslogtreecommitdiffstats
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2010-05-21 12:36:30 +0000
committerZdenek Kabelac <zkabelac@redhat.com>2010-05-21 12:36:30 +0000
commit8fea97b7e7f0d4af52fb70bde6654020cf9af4d1 (patch)
tree9f4289060a4262dd68793136bfd38100c5dfb94f /lib/Makefile.in
parentf3ef15ef6b791fa2cc17726d66562e73cc1a210f (diff)
downloadlvm2-8fea97b7e7f0d4af52fb70bde6654020cf9af4d1.tar.gz
lvm2-8fea97b7e7f0d4af52fb70bde6654020cf9af4d1.tar.xz
lvm2-8fea97b7e7f0d4af52fb70bde6654020cf9af4d1.zip
Replicator: base lvm2 support
Adding configure.in support for Replicators. Adding basic lib lvm support for Replicators. Adding flags REPLICATOR and REPLICATOR_LOG. Adding segments SEG_REPLICATOR and SEG_REPLICATOR_DEV. Adding basic methods for handling replicator metadata.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 34981417..ae810405 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -32,6 +32,10 @@ ifeq ("@MIRRORS@", "shared")
SUBDIRS += mirror
endif
+ifeq ("@REPLICATORS@", "shared")
+ SUBDIRS += replicator
+endif
+
SOURCES =\
activate/activate.c \
cache/lvmcache.c \
@@ -74,6 +78,7 @@ SOURCES =\
metadata/mirror.c \
metadata/pv_manip.c \
metadata/pv_map.c \
+ metadata/replicator_manip.c \
metadata/segtype.c \
metadata/snapshot_manip.c \
misc/crc.c \
@@ -129,6 +134,10 @@ ifeq ("@MIRRORS@", "internal")
SOURCES += mirror/mirrored.c
endif
+ifeq ("@REPLICATORS@", "internal")
+ SOURCES += replicator/replicator.c
+endif
+
ifeq ("@DEVMAPPER@", "yes")
SOURCES +=\
activate/dev_manager.c \
@@ -155,6 +164,7 @@ ifeq ($(MAKECMDGOALS),distclean)
format_pool \
snapshot \
mirror \
+ replicator \
locking
endif