2015-03-05 23:00:44 +03:00
#
# Copyright (C) 2014-2015 Red Hat, Inc.
#
# 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 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
2015-03-05 23:00:44 +03:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = @top_builddir@
2015-07-06 18:42:11 +03:00
SOURCES = lvmlockd-core.c
i f e q ( "@BUILD_LOCKDSANLOCK@" , "yes" )
SOURCES += lvmlockd-sanlock.c
e n d i f
i f e q ( "@BUILD_LOCKDDLM@" , "yes" )
SOURCES += lvmlockd-dlm.c
e n d i f
2015-03-05 23:00:44 +03:00
TARGETS = lvmlockd lvmlockctl
.PHONY : install_lvmlockd
i n c l u d e $( top_builddir ) / m a k e . t m p l
INCLUDES += -I$( top_srcdir) /libdaemon/server
LVMLIBS = -ldaemonserver $( LVMINTERNAL_LIBS) -ldevmapper
2015-07-27 16:53:08 +03:00
LIBS += $( PTHREAD_LIBS)
2015-07-06 18:42:11 +03:00
i f e q ( "@BUILD_LOCKDSANLOCK@" , "yes" )
LIBS += -lsanlock_client
e n d i f
i f e q ( "@BUILD_LOCKDDLM@" , "yes" )
LIBS += -ldlm_lt
e n d i f
2015-03-05 23:00:44 +03:00
LDFLAGS += -L$( top_builddir) /libdaemon/server
CLDFLAGS += -L$( top_builddir) /libdaemon/server
lvmlockd : $( OBJECTS ) $( top_builddir ) /libdaemon /client /libdaemonclient .a \
$( top_builddir) /libdaemon/server/libdaemonserver.a
$( CC) $( CFLAGS) $( LDFLAGS) -o $@ $( OBJECTS) $( LVMLIBS) $( LIBS)
lvmlockctl : lvmlockctl .o $( top_builddir ) /libdaemon /client /libdaemonclient .a \
$( top_builddir) /libdaemon/server/libdaemonserver.a
$( CC) $( CFLAGS) $( LDFLAGS) -o $@ lvmlockctl.o $( LVMLIBS)
install_lvmlockd : lvmlockd
$( INSTALL_PROGRAM) -D $< $( sbindir) /$( <F)
install_lvmlockctl : lvmlockctl
$( INSTALL_PROGRAM) -D $< $( sbindir) /$( <F)
install_lvm2 : install_lvmlockd install_lvmlockctl
install : install_lvm 2