2001-11-28 20:08:11 +00:00
#
2004-03-30 19:08:57 +00:00
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
# Copyright (C) 2004 Red Hat, Inc. All rights reserved.
2001-11-28 20:08:11 +00:00
#
2004-03-30 19:08:57 +00:00
# This file is part of the device-mapper userspace tools.
2001-11-28 20:08:11 +00:00
#
2004-03-30 19:08:57 +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 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,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2001-11-28 20:08:11 +00:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
2001-11-28 21:03:50 +00:00
interface = @interface@
2001-11-28 20:08:11 +00:00
2003-01-21 21:22:55 +00:00
SOURCES = libdm-common.c $( interface) /libdevmapper.c
2001-12-05 16:41:52 +00:00
INCLUDES = -I$( interface)
2001-11-28 20:08:11 +00:00
2004-02-24 18:46:20 +00:00
LIB_STATIC = $( interface) /libdevmapper.a
LIB_SHARED = $( interface) /libdevmapper.so
TARGETS = $( LIB_STATIC) $( LIB_SHARED)
2001-11-28 20:08:11 +00:00
i n c l u d e . . / m a k e . t m p l
2002-01-02 19:01:09 +00:00
2002-01-17 13:37:09 +00:00
install : install_ @interface @
2002-01-17 13:19:55 +00:00
$( LN_S) -f libdevmapper.so.$( LIB_VERSION) $( libdir) /libdevmapper.so
2002-01-02 13:40:49 +00:00
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 444 libdevmapper.h \
$( includedir) /libdevmapper.h
2001-11-28 20:08:11 +00:00
2004-01-28 03:40:31 +00:00
install_static : install_ @interface @_static
$( LN_S) -f libdevmapper.a.$( LIB_VERSION) $( libdir) /libdevmapper.a
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 444 libdevmapper.h \
$( includedir) /libdevmapper.h
.PHONY : install install_ @interface @ install_static install_ @interface @_static
2001-11-28 20:08:11 +00:00
2002-01-17 13:37:09 +00:00
install_fs : fs /libdevmapper .so
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 555 $( STRIP) $< \
$( libdir) /libdevmapper.so.$( LIB_VERSION)
2002-01-02 19:01:09 +00:00
2002-01-17 13:37:09 +00:00
install_ioctl : ioctl /libdevmapper .so
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 555 $( STRIP) $< \
2002-06-19 13:07:05 +00:00
$( libdir) /libdevmapper.so.$( LIB_VERSION)
2002-01-02 19:01:09 +00:00
2004-01-28 03:40:31 +00:00
install_ioctl_static : ioctl /libdevmapper .a
$( INSTALL) -D -o $( OWNER) -g $( GROUP) -m 555 $( STRIP) $< \
$( libdir) /libdevmapper.a.$( LIB_VERSION)
2002-03-14 16:56:02 +00:00
distclean_lib :
$( RM) libdm-common.h
distclean : distclean_lib
2002-06-17 15:50:17 +00:00
.PHONY : distclean_lib distclean
2002-06-19 13:07:05 +00:00