summaryrefslogtreecommitdiffstats
path: root/daemons/dmeventd
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2011-08-11 19:18:17 +0000
committerAlasdair Kergon <agk@redhat.com>2011-08-11 19:18:17 +0000
commit40dbaac89256f1101382c389a035ce673997c625 (patch)
treebeabd15e7a67e9b1321275a6de43471f9c5418b0 /daemons/dmeventd
parentb2fa9b43dc8797f33a4af94dadf6f52b81c3af99 (diff)
downloadlvm2-40dbaac89256f1101382c389a035ce673997c625.tar.gz
lvm2-40dbaac89256f1101382c389a035ce673997c625.tar.xz
lvm2-40dbaac89256f1101382c389a035ce673997c625.zip
pre-release fixes incl make distclean and configure --with-raid=none/shared
Diffstat (limited to 'daemons/dmeventd')
-rw-r--r--daemons/dmeventd/plugins/Makefile.in22
1 files changed, 19 insertions, 3 deletions
diff --git a/daemons/dmeventd/plugins/Makefile.in b/daemons/dmeventd/plugins/Makefile.in
index ff1ccaec..6c51c9f2 100644
--- a/daemons/dmeventd/plugins/Makefile.in
+++ b/daemons/dmeventd/plugins/Makefile.in
@@ -16,10 +16,26 @@ srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
-SUBDIRS += lvm2 mirror snapshot raid
+SUBDIRS += lvm2
+
+ifneq ("@MIRRORS@", "none")
+ SUBDIRS += mirror
+endif
+
+ifneq ("@SNAPSHOTS@", "none")
+ SUBDIRS += snapshot
+endif
+
+ifneq ("@RAID@", "none")
+ SUBDIRS += raid
+endif
+
+ifeq ($(MAKECMDGOALS),distclean)
+ SUBDIRS = lvm2 mirror snapshot raid
+endif
include $(top_builddir)/make.tmpl
-mirror: lvm2
snapshot: lvm2
-
+mirror: lvm2
+raid: lvm2