]> sourceware.org Git - lvm2.git/blame - daemons/dmeventd/plugins/lvm2/Makefile.in
Replace CFLOW_CMD only in make.tmpl and use it as variable elsewhere.
[lvm2.git] / daemons / dmeventd / plugins / lvm2 / Makefile.in
CommitLineData
d3d98fdc
AK
1#
2# Copyright (C) 2010 Red Hat, Inc. All rights reserved.
3#
4# This file is part of LVM2.
5#
6# This copyrighted material is made available to anyone wishing to use,
7# modify, copy, or redistribute it subject to the terms and conditions
8# of the GNU General Public License v.2.
9#
10# You should have received a copy of the GNU General Public License
11# along with this program; if not, write to the Free Software Foundation,
12# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
13
14srcdir = @srcdir@
15top_srcdir = @top_srcdir@
16top_builddir = @top_builddir@
17VPATH = @srcdir@
18
19CLDFLAGS += -L${top_builddir}/tools
20
21SOURCES = dmeventd_lvm.c
22
23ifeq ("@LIB_SUFFIX@","dylib")
24 LIB_SHARED = libdevmapper-event-lvm2.dylib
25else
26 LIB_SHARED = libdevmapper-event-lvm2.so
27endif
28LIB_VERSION = $(LIB_VERSION_LVM)
29
30include $(top_builddir)/make.tmpl
31
32LIBS += -ldevmapper @LIB_PTHREAD@ @LVM2CMD_LIB@
33
34install_lvm2: libdevmapper-event-lvm2.$(LIB_SUFFIX)
35 $(INSTALL) -D $(OWNER) $(GROUP) -m 555 $(STRIP) $< \
36 $(libdir)/$<.$(LIB_VERSION)
37 $(LN_S) -f $<.$(LIB_VERSION) $(libdir)/$<
38
39install: install_lvm2
This page took 0.02529 seconds and 5 git commands to generate.