summaryrefslogtreecommitdiffstats
path: root/libdaemon/Makefile.in
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2012-02-28 18:25:48 +0000
committerAlasdair Kergon <agk@redhat.com>2012-02-28 18:25:48 +0000
commited997ca884f8220a55449b3c02b707a23593fa88 (patch)
tree8a05e8ba133a87cadb5b64fb64b80fb41be29167 /libdaemon/Makefile.in
parent5bba2cc74be3e5b6994985285e960dcce5bef56b (diff)
downloadlvm2-ed997ca884f8220a55449b3c02b707a23593fa88.tar.gz
lvm2-ed997ca884f8220a55449b3c02b707a23593fa88.tar.xz
lvm2-ed997ca884f8220a55449b3c02b707a23593fa88.zip
Series of commits to move daemon code into separate top-level dir and
fix build deps etc.
Diffstat (limited to 'libdaemon/Makefile.in')
-rw-r--r--libdaemon/Makefile.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/libdaemon/Makefile.in b/libdaemon/Makefile.in
new file mode 100644
index 00000000..fbe5a087
--- /dev/null
+++ b/libdaemon/Makefile.in
@@ -0,0 +1,29 @@
+#
+# Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
+#
+# This file is part of LVM2.
+#
+# 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
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+top_builddir = @top_builddir@
+
+.PHONY: client server
+
+ifeq ("@BUILD_LVMETAD@", "yes")
+ SUBDIRS += client server
+server: client
+endif
+
+ifeq ($(MAKECMDGOALS),distclean)
+ SUBDIRS = client server
+endif
+
+include $(top_builddir)/make.tmpl