1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

dmeventd plugins move

This commit is contained in:
Alasdair Kergon 2008-10-31 22:29:44 +00:00
parent 44e63d973f
commit b7edb5bfa7
3 changed files with 8 additions and 9 deletions

View File

@ -24,13 +24,9 @@ endif
SUBDIRS += lib tools daemons SUBDIRS += lib tools daemons
ifeq ("@DMEVENTD@", "yes")
SUBDIRS += dmeventd
endif
ifeq ($(MAKECMDGOALS),distclean) ifeq ($(MAKECMDGOALS),distclean)
SUBDIRS += daemons/clvmd \ SUBDIRS += daemons/clvmd \
dmeventd \ daemons/dmeventd/plugins \
lib/format1 \ lib/format1 \
lib/format_pool \ lib/format_pool \
lib/locking \ lib/locking \
@ -47,15 +43,13 @@ include make.tmpl
daemons: lib daemons: lib
lib: include lib: include
tools: lib tools: lib
dmeventd: tools po: tools daemons
po: tools daemons dmeventd
ifeq ("@INTL@", "yes") ifeq ("@INTL@", "yes")
lib.pofile: include.pofile lib.pofile: include.pofile
tools.pofile: lib.pofile tools.pofile: lib.pofile
daemons.pofile: lib.pofile daemons.pofile: lib.pofile
dmeventd.pofile: tools.pofile po.pofile: tools.pofile daemons.pofile
po.pofile: tools.pofile daemons.pofile dmeventd.pofile
pofile: po.pofile pofile: po.pofile
endif endif

View File

@ -774,6 +774,7 @@ daemons/Makefile
daemons/clvmd/Makefile daemons/clvmd/Makefile
daemons/dmeventd/Makefile daemons/dmeventd/Makefile
daemons/dmeventd/libdevmapper-event.pc daemons/dmeventd/libdevmapper-event.pc
daemons/dmeventd/plugins/Makefile
daemons/dmeventd/plugins/mirror/Makefile daemons/dmeventd/plugins/mirror/Makefile
daemons/dmeventd/plugins/snapshot/Makefile daemons/dmeventd/plugins/snapshot/Makefile
doc/Makefile doc/Makefile

View File

@ -19,5 +19,9 @@ ifneq ("@CLVMD@", "none")
SUBDIRS = clvmd SUBDIRS = clvmd
endif endif
ifeq ("@DMEVENTD@", "yes")
SUBDIRS += dmeventd/plugins
endif
include $(top_srcdir)/make.tmpl include $(top_srcdir)/make.tmpl