2011-08-31 15:31:57 +04:00
#
2012-02-28 22:35:04 +04:00
# Copyright (C) 2011-2012 Red Hat, Inc.
#
# This file is part of LVM2.
2011-08-31 15:31:57 +04: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 Lesser General Public License v.2.1.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2011-08-31 15:31:57 +04:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
SOURCES = lvmetad-core.c
SOURCES2 = testclient.c
2014-10-21 18:42:20 +04:00
TARGETS = lvmetad lvmetactl
2011-08-31 15:31:57 +04:00
2011-09-17 18:50:22 +04:00
.PHONY : install_lvmetad
2011-08-31 15:31:57 +04:00
CFLOW_LIST = $( SOURCES)
CFLOW_LIST_TARGET = $( LIB_NAME) .cflow
CFLOW_TARGET = lvmetad
i n c l u d e $( top_builddir ) / m a k e . t m p l
2012-02-28 22:35:04 +04:00
INCLUDES += -I$( top_srcdir) /libdaemon/server
LVMLIBS = -ldaemonserver $( LVMINTERNAL_LIBS) -ldevmapper
LIBS += $( PTHREAD_LIBS)
2013-12-05 17:03:10 +04:00
LDFLAGS += -L$( top_builddir) /libdaemon/server $( EXTRA_EXEC_LDFLAGS)
2013-12-04 17:28:40 +04:00
CLDFLAGS += -L$( top_builddir) /libdaemon/server
2013-12-05 17:03:10 +04:00
CFLAGS += $( EXTRA_EXEC_CFLAGS)
2011-08-31 15:31:57 +04:00
2012-02-28 22:35:04 +04:00
lvmetad : $( OBJECTS ) $( top_builddir ) /libdaemon /client /libdaemonclient .a \
$( top_builddir) /libdaemon/server/libdaemonserver.a
2015-06-08 19:48:22 +03:00
$( CC) $( CFLAGS) $( LDFLAGS) -o $@ $( OBJECTS) $( LVMLIBS) $( LIBS)
2011-08-31 15:31:57 +04:00
2014-10-21 18:42:20 +04:00
lvmetactl : lvmetactl .o $( top_builddir ) /libdaemon /client /libdaemonclient .a \
$( top_builddir) /libdaemon/server/libdaemonserver.a
$( CC) $( CFLAGS) $( LDFLAGS) -o $@ lvmetactl.o $( LVMLIBS)
2015-09-11 22:30:45 +03:00
CLEAN_TARGETS += lvmetactl.o
2011-08-31 15:31:57 +04:00
# TODO: No idea. No idea how to test either.
#ifneq ("$(CFLOW_CMD)", "")
#CFLOW_SOURCES = $(addprefix $(srcdir)/, $(SOURCES))
#-include $(top_builddir)/libdm/libdevmapper.cflow
#-include $(top_builddir)/lib/liblvm-internal.cflow
#-include $(top_builddir)/lib/liblvm2cmd.cflow
#-include $(top_builddir)/daemons/dmeventd/$(LIB_NAME).cflow
#-include $(top_builddir)/daemons/dmeventd/plugins/mirror/$(LIB_NAME)-lvm2mirror.cflow
#endif
2011-09-17 18:50:22 +04:00
install_lvmetad : lvmetad
$( INSTALL_PROGRAM) -D $< $( sbindir) /$( <F)
2011-08-31 15:31:57 +04:00
2011-09-25 00:57:49 +04:00
install_lvm2 : install_lvmetad
2011-08-31 15:31:57 +04:00
2011-09-25 00:57:49 +04:00
install : install_lvm 2