2004-04-14 17:39:55 +00:00
#
2010-04-09 21:42:48 +00:00
# Copyright (C) 2004-2010 Red Hat, Inc. All rights reserved.
2004-04-14 17:39:55 +00:00
#
2007-09-21 10:16:45 +00:00
# This file is part of LVM2.
2004-04-14 17:39:55 +00: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,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
srcdir = @srcdir@
top_srcdir = @top_srcdir@
2009-10-02 19:10:31 +00:00
top_builddir = @top_builddir@
2004-04-14 17:39:55 +00:00
2010-05-20 11:45:56 +00:00
CONFSRC = example.conf
2004-04-14 17:39:55 +00:00
CONFDEST = lvm.conf
2015-02-23 22:19:08 +00:00
CONFLOCAL = lvmlocal.conf
2004-04-14 17:39:55 +00:00
2014-05-21 12:32:12 +02:00
PROFILE_TEMPLATES = command_profile_template.profile metadata_profile_template.profile
2014-06-13 09:45:26 +02:00
PROFILES = $( PROFILE_TEMPLATES) $( srcdir) /thin-generic.profile $( srcdir) /thin-performance.profile
2013-06-28 14:08:04 +02:00
2010-03-04 09:51:37 +00:00
i n c l u d e $( top_builddir ) / m a k e . t m p l
2004-04-14 17:39:55 +00:00
2015-02-23 22:19:08 +00:00
.PHONY : install_conf install_localconf install_profiles
2013-06-28 14:08:04 +02:00
install_conf : $( CONFSRC )
2004-04-14 17:39:55 +00:00
@if [ ! -e $( confdir) /$( CONFDEST) ] ; then \
2010-04-09 21:42:48 +00:00
echo " $( INSTALL_WDATA) -D $< $( confdir) / $( CONFDEST) " ; \
$( INSTALL_WDATA) -D $< $( confdir) /$( CONFDEST) ; \
2004-04-14 17:39:55 +00:00
fi
2015-02-23 22:19:08 +00:00
install_localconf : $( CONFLOCAL )
@if [ ! -e $( confdir) /$( CONFLOCAL) ] ; then \
echo " $( INSTALL_WDATA) -D $< $( confdir) / $( CONFLOCAL) " ; \
$( INSTALL_WDATA) -D $< $( confdir) /$( CONFLOCAL) ; \
fi
2013-06-28 14:08:04 +02:00
install_profiles : $( PROFILES )
2013-07-03 13:07:39 +02:00
$( INSTALL_DIR) $( DESTDIR) $( DEFAULT_PROFILE_DIR)
$( INSTALL_DATA) $( PROFILES) $( DESTDIR) $( DEFAULT_PROFILE_DIR) /
2013-06-28 14:08:04 +02:00
2015-02-23 22:19:08 +00:00
install_lvm2 : install_conf install_localconf install_profiles
2013-06-28 14:08:04 +02:00
2009-05-11 10:28:45 +00:00
install : install_lvm 2
2010-08-03 13:00:45 +00:00
2015-02-23 22:19:08 +00:00
DISTCLEAN_TARGETS += $( CONFSRC) $( CONFLOCAL) $( PROFILE_TEMPLATES)