mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-25 01:34:38 +03:00
84 lines
2.3 KiB
Makefile
84 lines
2.3 KiB
Makefile
#
|
|
# Copyright (C) 2005 Red Hat, Inc. All rights reserved.
|
|
#
|
|
# This file is part of the device-mapper userspace tools.
|
|
#
|
|
# 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
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
SOURCES = libdevmapper-event.c
|
|
|
|
LIB_STATIC = libdevmapper-event.a
|
|
|
|
ifeq ("@LIB_SUFFIX@","dylib")
|
|
LIB_SHARED = libdevmapper-event.dylib
|
|
else
|
|
LIB_SHARED = libdevmapper-event.so
|
|
endif
|
|
|
|
TARGETS = dmeventd
|
|
CLEAN_TARGETS = dmeventd.o
|
|
|
|
include ../make.tmpl
|
|
|
|
LDFLAGS += -ldl -ldevmapper -lpthread
|
|
CLDFLAGS += -ldl -ldevmapper -lpthread
|
|
|
|
dmeventd: $(LIB_SHARED) dmeventd.o
|
|
$(CC) -o $@ dmeventd.o $(CFLAGS) $(LDFLAGS) \
|
|
-L. -ldevmapper-event $(LIBS) -rdynamic
|
|
|
|
.PHONY: install_dynamic install_static install_include \
|
|
install_pkgconfig install_dmeventd
|
|
|
|
INSTALL_TYPE = install_dynamic
|
|
|
|
ifeq ("@STATIC_LINK@", "yes")
|
|
INSTALL_TYPE += install_static
|
|
endif
|
|
|
|
ifeq ("@PKGCONFIG@", "yes")
|
|
INSTALL_TYPE += install_pkgconfig
|
|
endif
|
|
|
|
install: $(INSTALL_TYPE) install_include install_dmeventd
|
|
|
|
install_include:
|
|
$(INSTALL) -D $(OWNER) $(GROUP) -m 444 libdevmapper-event.h \
|
|
$(includedir)/libdevmapper-event.h
|
|
|
|
install_dynamic: libdevmapper-event.$(LIB_SUFFIX)
|
|
$(INSTALL) -D $(OWNER) $(GROUP) -m 555 $(STRIP) $< \
|
|
$(libdir)/libdevmapper-event.$(LIB_SUFFIX).$(LIB_VERSION)
|
|
$(LN_S) -f libdevmapper-event.$(LIB_SUFFIX).$(LIB_VERSION) \
|
|
$(libdir)/libdevmapper-event.$(LIB_SUFFIX)
|
|
|
|
install_dmeventd: dmeventd
|
|
$(INSTALL) -D $(OWNER) $(GROUP) -m 555 $(STRIP) $< $(sbindir)/$<
|
|
|
|
install_pkgconfig:
|
|
$(INSTALL) -D $(OWNER) $(GROUP) -m 444 libdevmapper-event.pc \
|
|
$(usrlibdir)/pkgconfig/devmapper-event.pc
|
|
|
|
install_static: libdevmapper-event.a
|
|
$(INSTALL) -D $(OWNER) $(GROUP) -m 555 $(STRIP) $< \
|
|
$(libdir)/libdevmapper-event.a.$(LIB_VERSION)
|
|
$(LN_S) -f libdevmapper-event.a.$(LIB_VERSION) $(libdir)/libdevmapper-event.a
|
|
|
|
.PHONY: distclean_lib distclean
|
|
|
|
distclean_lib:
|
|
$(RM) libdevmapper-event.pc
|
|
|
|
distclean: distclean_lib
|
|
|