python: Implement can_multi_conn.
[nbdkit/ericb.git] / plugins / nbd / Makefile.am
blob8ea9e166b82a275d27553b911f08ca56e6294975
1 # nbdkit
2 # Copyright (C) 2017-2019 Red Hat Inc.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # * Neither the name of Red Hat nor the names of its contributors may be
16 # used to endorse or promote products derived from this software without
17 # specific prior written permission.
19 # THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
20 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21 # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
23 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 # SUCH DAMAGE.
32 include $(top_srcdir)/common-rules.mk
34 EXTRA_DIST = nbdkit-nbd-plugin.pod
36 if HAVE_NBD_PLUGIN
38 plugin_LTLIBRARIES = nbdkit-nbd-plugin.la
40 nbdkit_nbd_plugin_la_SOURCES = \
41         $(top_srcdir)/include/nbdkit-plugin.h \
42         $(NULL)
44 nbdkit_nbd_plugin_la_CPPFLAGS = \
45         -I$(top_srcdir)/include \
46         -I$(top_srcdir)/common/include \
47         -I$(top_srcdir)/common/utils \
48         -I$(top_srcdir)/server \
49         $(NULL)
50 nbdkit_nbd_plugin_la_CFLAGS = $(WARNINGS_CFLAGS)
51 nbdkit_nbd_plugin_la_LDFLAGS = \
52         -module -avoid-version -shared \
53         -Wl,--version-script=$(top_srcdir)/plugins/plugins.syms \
54         $(NULL)
55 nbdkit_nbd_plugin_la_LIBADD = \
56         $(top_builddir)/common/utils/libutils.la \
57         $(NULL)
59 # TODO: drop standalone version, which is locked at nbdkit 1.13.4 behavior,
60 # once libnbd is more commonly available with stable API.
61 if HAVE_LIBNBD
62 nbdkit_nbd_plugin_la_SOURCES += \
63         nbd.c \
64         $(NULL)
65 nbdkit_nbd_plugin_la_CFLAGS += \
66         $(LIBNBD_CFLAGS) \
67         $(NULL)
68 nbdkit_nbd_plugin_la_LIBADD += \
69         $(LIBNBD_LIBS) \
70         $(NULL)
72 else !HAVE_LIBNBD
73 nbdkit_nbd_plugin_la_SOURCES += \
74         nbd-standalone.c \
75         $(NULL)
76 nbdkit_nbd_plugin_la_CPPFLAGS += \
77         -I$(top_srcdir)/common/protocol \
78         $(NULL)
79 nbdkit_nbd_plugin_la_LIBADD += \
80         $(top_builddir)/common/protocol/libprotocol.la \
81         $(NULL)
83 endif !HAVE_LIBNBD
85 if HAVE_POD
87 man_MANS = nbdkit-nbd-plugin.1
88 CLEANFILES += $(man_MANS)
90 nbdkit-nbd-plugin.1: nbdkit-nbd-plugin.pod
91         $(PODWRAPPER) --section=1 --man $@ \
92             --html $(top_builddir)/html/$@.html \
93             $<
95 endif HAVE_POD
97 endif HAVE_NBD_PLUGIN