2006-11-20 23:03:26 +03:00
#
2015-10-14 01:51:55 +03:00
# Copyright (C) 2006-2015 Red Hat, Inc. All rights reserved.
2006-11-20 23:03:26 +03:00
#
2007-09-21 14:16:45 +04:00
# This file is part of LVM2.
2006-11-20 23:03:26 +03: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 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,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2006-11-20 23:03:26 +03:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
2009-10-02 23:10:31 +04:00
top_builddir = @top_builddir@
2006-11-20 23:03:26 +03:00
2018-06-07 18:15:04 +03:00
SOURCES = lvm2_activation_generator_systemd_red_hat.c
TARGETS = lvm2_activation_generator_systemd_red_hat
2012-07-31 18:46:24 +04:00
2010-03-04 12:51:37 +03:00
i n c l u d e $( top_builddir ) / m a k e . t m p l
2006-11-20 23:03:26 +03:00
2017-08-01 19:17:06 +03:00
i f e q ( "@BUILD_DMEVENTD@" , "yes" )
2015-10-14 01:51:55 +03:00
LDFLAGS += -Wl,-rpath-link,$( top_builddir) /daemons/dmeventd
2015-10-13 23:02:17 +03:00
e n d i f
2012-07-31 18:46:24 +04:00
2018-09-13 19:02:53 +03:00
LVM_SCRIPTS = lvmdump.sh
2015-04-14 16:21:22 +03:00
DM_SCRIPTS =
2012-07-31 18:46:24 +04:00
2008-11-01 05:19:19 +03:00
i f e q ( "@FSADM@" , "yes" )
2015-04-14 16:21:22 +03:00
LVM_SCRIPTS += fsadm.sh
2008-11-01 05:19:19 +03:00
e n d i f
2009-03-16 21:28:04 +03:00
2021-07-09 15:44:07 +03:00
i f e q ( "@VDOIMPORT@" , "yes" )
LVM_SCRIPTS += vdoimport.sh
e n d i f
2012-10-12 16:37:57 +04:00
i f e q ( "@BLKDEACTIVATE@" , "yes" )
2015-04-14 16:21:22 +03:00
DM_SCRIPTS += blkdeactivate.sh
2012-10-12 16:37:57 +04:00
e n d i f
2010-11-05 19:18:38 +03:00
OCF_SCRIPTS =
i f e q ( "@OCF@" , "yes" )
OCF_SCRIPTS += VolumeGroup.ocf
e n d i f
2010-04-10 01:42:48 +04:00
v p a t h % . s h $( srcdir )
2011-09-25 01:05:03 +04:00
v p a t h % . o c f $( srcdir )
2010-04-10 01:42:48 +04:00
%_install : %.sh
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_PROGRAM) -D $< $( sbindir) /$( basename $( <F) )
2010-04-10 01:42:48 +04:00
2010-11-05 19:18:38 +03:00
%_install : %.ocf
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( ocf_scriptdir)
$( Q) $( INSTALL_SCRIPT) $< $( ocf_scriptdir) /$( basename $( <F) )
2010-11-05 19:18:38 +03:00
2015-04-14 16:21:22 +03:00
install_lvm2 : $( LVM_SCRIPTS :.sh =_install )
install_device-mapper : $( DM_SCRIPTS :.sh =_install )
2010-04-10 01:42:48 +04:00
2010-11-05 19:18:38 +03:00
install_ocf : $( OCF_SCRIPTS :.ocf =_install )
2015-04-14 16:21:22 +03:00
install : install_lvm 2 install_ocf install_device -mapper
2009-05-11 14:35:00 +04:00
2010-05-20 18:45:14 +04:00
# FIXME Customise for other distributions
install_initscripts :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] initscripts"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( initdir)
2012-02-23 15:13:18 +04:00
i f e q ( "@BUILD_DMEVENTD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) lvm2_monitoring_init_red_hat $( initdir) /lvm2-monitor
2012-02-23 15:13:18 +04:00
e n d i f
2015-05-09 02:59:18 +03:00
i f e q ( "@BUILD_LVMPOLLD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) lvm2_lvmpolld_init_red_hat $( initdir) /lvm2-lvmpolld
2015-05-09 02:59:18 +03:00
e n d i f
2010-05-20 18:45:14 +04:00
i f e q ( "@BUILD_CMIRRORD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) cmirrord_init_red_hat $( initdir) /cmirrord
2010-05-20 18:45:14 +04:00
e n d i f
2012-10-12 16:37:57 +04:00
i f e q ( "@BLKDEACTIVATE@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_SCRIPT) blk_availability_init_red_hat $( initdir) /blk-availability
2012-10-12 16:37:57 +04:00
e n d i f
2010-05-20 18:45:14 +04:00
2013-12-05 17:03:10 +04:00
CFLAGS_lvm2_activation_generator_systemd_red_hat.o += $( EXTRA_EXEC_CFLAGS)
2018-12-15 03:55:11 +03:00
lvm2_activation_generator_systemd_red_hat : $( OBJECTS ) $( LVMINTERNAL_LIBS )
2018-11-29 19:09:27 +03:00
@echo " [CC] $@ "
2018-12-15 03:55:11 +03:00
$( Q) $( CC) -o $@ $( OBJECTS) $( CFLAGS) $( LDFLAGS) $( EXTRA_EXEC_LDFLAGS) $( ELDFLAGS) $( LVMINTERNAL_LIBS) $( LIBS)
2012-07-31 18:46:24 +04:00
install_systemd_generators :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] systemd_generators"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( systemd_generator_dir)
$( Q) $( INSTALL_PROGRAM) lvm2_activation_generator_systemd_red_hat $( systemd_generator_dir) /lvm2-activation-generator
2012-07-31 18:46:24 +04:00
2016-02-18 02:53:35 +03:00
install_systemd_units : install_dbus_service
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] systemd_units"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( systemd_unit_dir)
$( Q) $( INSTALL_DATA) lvm2-pvscan.service $( systemd_unit_dir) /lvm2-pvscan@.service
2012-02-23 15:13:18 +04:00
i f e q ( "@BUILD_DMEVENTD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) dm_event_systemd_red_hat.socket $( systemd_unit_dir) /dm-event.socket
$( Q) $( INSTALL_DATA) dm_event_systemd_red_hat.service $( systemd_unit_dir) /dm-event.service
$( Q) $( INSTALL_DATA) lvm2_monitoring_systemd_red_hat.service $( systemd_unit_dir) /lvm2-monitor.service
2012-02-23 15:13:18 +04:00
e n d i f
2012-10-12 16:37:57 +04:00
i f e q ( "@BLKDEACTIVATE@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) blk_availability_systemd_red_hat.service $( systemd_unit_dir) /blk-availability.service
2012-10-12 16:37:57 +04:00
e n d i f
2015-05-09 02:59:18 +03:00
i f e q ( "@BUILD_LVMPOLLD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvm2_lvmpolld_systemd_red_hat.socket $( systemd_unit_dir) /lvm2-lvmpolld.socket
$( Q) $( INSTALL_DATA) lvm2_lvmpolld_systemd_red_hat.service $( systemd_unit_dir) /lvm2-lvmpolld.service
2015-05-09 02:59:18 +03:00
e n d i f
2015-03-05 23:00:44 +03:00
i f e q ( "@BUILD_LVMLOCKD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvmlockd.service $( systemd_unit_dir) /lvmlockd.service
$( Q) $( INSTALL_DATA) lvmlocks.service $( systemd_unit_dir) /lvmlocks.service
2015-03-05 23:00:44 +03:00
e n d i f
2014-02-11 12:55:57 +04:00
i f e q ( "@BUILD_CMIRRORD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvm2_cmirrord_systemd_red_hat.service $( systemd_unit_dir) /lvm2-cmirrord.service
2014-02-11 12:55:57 +04:00
e n d i f
2016-02-18 02:53:35 +03:00
i f e q ( "@BUILD_LVMDBUSD@" , "yes" )
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DATA) lvm2_lvmdbusd_systemd_red_hat.service $( systemd_unit_dir) /lvm2-lvmdbusd.service
2016-02-18 02:53:35 +03:00
e n d i f
i f e q ( "@BUILD_LVMDBUSD@" , "yes" )
install_dbus_service :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] dbus_service"
2018-11-29 19:09:27 +03:00
$( Q) $( INSTALL_DIR) $( dbusconfdir)
$( Q) $( INSTALL_DIR) $( dbusservicedir)
$( Q) $( INSTALL_DATA) $( top_srcdir) /scripts/com.redhat.lvmdbus1.conf $( dbusconfdir)
$( Q) $( INSTALL_DATA) com.redhat.lvmdbus1.service $( dbusservicedir)
2016-02-18 02:53:35 +03:00
install_systemd_units : install_dbus_service
e n d i f
2011-07-28 16:57:26 +04:00
2012-02-22 21:55:10 +04:00
install_tmpfiles_configuration :
2021-02-28 23:20:54 +03:00
@echo " [INSTALL] configuration"
2018-12-15 03:47:24 +03:00
$( Q) $( INSTALL_DIR) $( tmpfiles_dir)
$( Q) $( INSTALL_DATA) lvm2_tmpfiles_red_hat.conf $( tmpfiles_dir) /lvm2.conf
2012-02-22 21:55:10 +04:00
2014-05-07 14:13:36 +04:00
DISTCLEAN_TARGETS += \
2014-04-17 12:01:05 +04:00
blkdeactivate.sh \
blk_availability_init_red_hat \
blk_availability_systemd_red_hat.service \
clvmd_init_red_hat \
cmirrord_init_red_hat \
2016-06-02 12:58:54 +03:00
com.redhat.lvmdbus1.service \
2014-04-17 12:01:05 +04:00
dm_event_systemd_red_hat.service \
dm_event_systemd_red_hat.socket \
2016-09-23 13:48:52 +03:00
lvmdump.sh \
2018-12-17 04:04:11 +03:00
lvm2-pvscan.service \
2014-04-17 12:01:05 +04:00
lvm2_cluster_activation_red_hat.sh \
lvm2_cluster_activation_systemd_red_hat.service \
lvm2_clvmd_systemd_red_hat.service \
lvm2_cmirrord_systemd_red_hat.service \
2016-06-02 12:58:54 +03:00
lvm2_lvmdbusd_systemd_red_hat.service \
2015-09-11 22:30:45 +03:00
lvm2_lvmpolld_init_red_hat \
2015-05-09 02:59:18 +03:00
lvm2_lvmpolld_systemd_red_hat.service \
lvm2_lvmpolld_systemd_red_hat.socket \
2018-09-13 19:02:53 +03:00
lvmlockd.service \
lvmlocks.service \
2014-04-17 12:01:05 +04:00
lvm2_monitoring_init_red_hat \
lvm2_monitoring_systemd_red_hat.service \
lvm2_pvscan_systemd_red_hat@.service \
lvm2_tmpfiles_red_hat.conf
2018-07-01 16:01:41 +03:00
# Remove ancient files
DISTCLEAN_TARGETS += \
lvm2_lvmlocking_systemd_red_hat.service