Update Red Hat Copyright Notices
[nbdkit.git] / plugins / ocaml / Makefile.am
blobda1b1ec965cdb75eb3e47fd2cd324e1bfae14ecb
1 # nbdkit
2 # Copyright Red Hat
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 = \
35         NBDKit.mli \
36         NBDKit.ml \
37         nbdkit-ocaml-plugin.pod \
38         example.ml \
39         $(NULL)
41 if HAVE_OCAML
42 # Requires some work to port to Windows.  Disable it for now.
43 if !IS_WINDOWS
45 ocamllibdir = $(OCAMLLIB)
46 ocamllib_DATA = NBDKit.mli NBDKit.cmi NBDKit.cmx NBDKit.o
48 NBDKit.cmi: NBDKit.mli
49         $(OCAMLC) -c $< -o $@
51 NBDKit.cmx: NBDKit.ml NBDKit.cmi
52         $(OCAMLOPT) $(OCAMLOPTFLAGS) -c $< -o $@
53 NBDKit.o: NBDKit.cmx
55 # NB: libnbdkitocaml is not a plugin.  It's a library that you have to
56 # link in to the OCaml plugins that you write.  nbdkit-ocaml-plugin(3)
57 # for more details.
59 lib_LTLIBRARIES = libnbdkitocaml.la
61 libnbdkitocaml_la_SOURCES = \
62         bindings.c \
63         callbacks.h \
64         plugin.c \
65         plugin.h \
66         $(top_srcdir)/include/nbdkit-plugin.h \
67         $(NULL)
69 libnbdkitocaml_la_CPPFLAGS = \
70         -I$(OCAMLLIB) \
71         -I$(top_srcdir)/include \
72         -I$(top_builddir)/include \
73         -I$(top_srcdir)/common/include \
74         -DCAML_NAME_SPACE \
75         $(NULL)
77 libnbdkitocaml_la_CFLAGS = \
78         $(WARNINGS_CFLAGS) \
79         -fPIC \
80         $(NULL)
82 # The example plugin.
83 noinst_SCRIPTS = nbdkit-ocamlexample-plugin.so
84 nbdkit-ocamlexample-plugin.so: example.cmx libnbdkitocaml.la NBDKit.cmi NBDKit.cmx
85         $(OCAMLOPT) $(OCAMLOPTFLAGS) \
86           -output-obj -runtime-variant _pic -o $@ \
87           unix.cmxa NBDKit.cmx $< \
88           -cclib -L.libs -cclib -lnbdkitocaml
89 example.cmx: example.ml NBDKit.cmi NBDKit.cmx
90         $(OCAMLOPT) $(OCAMLOPTFLAGS) -c $< -o $@
92 if HAVE_POD
94 man_MANS = nbdkit-ocaml-plugin.3
95 if HAVE_OCAMLDOC
96 man_MANS += NBDKit.3
97 endif
98 CLEANFILES += $(man_MANS)
100 nbdkit-ocaml-plugin.3: nbdkit-ocaml-plugin.pod \
101                 $(top_builddir)/podwrapper.pl
102         $(PODWRAPPER) --section=3 --man $@ \
103             --html $(top_builddir)/html/$@.html \
104             $<
106 if HAVE_OCAMLDOC
107 NBDKit.3: NBDKit.mli
108         $(OCAMLDOC) -man -man-mini -man-suffix 3 $<
109 endif HAVE_OCAMLDOC
111 endif HAVE_POD
112 endif !IS_WINDOWS
113 endif HAVE_OCAML