Initial release.
[virt-similarity.git] / Makefile.am
1 # virt-similarity
2 # Copyright (C) 2013 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 ACLOCAL_AMFLAGS = -I m4
19
20 EXTRA_DIST = \
21         COPYING \
22         README \
23         virt-similarity.spec \
24         virt-similarity.spec.in \
25         $(SOURCES)
26
27 CLEANFILES = *~ *.cmi *.cmo *.cmx *.cma *.cmxa virt-similarity
28
29 # Sources in alphabetical order.
30 SOURCES = \
31         similarity.ml
32
33 # Objects in build order.
34 OBJECTS = \
35         similarity.cmo
36
37 XOBJECTS = $(OBJECTS:.=cmo=.cmx)
38
39 if HAVE_OCAMLOPT
40 virt-similarity: $(XOBJECTS)
41         $(OCAMLFIND) opt $(OCAMLCFLAGS) \
42           -linkpkg $(XOBJECTS) -o $@
43 else
44 virt-similarity: $(OBJECTS)
45         $(OCAMLFIND) c $(OCAMLCFLAGS) \
46           -linkpkg $(OBJECTS) -o $@
47 endif
48
49 # Rules for all OCaml files.
50 %.cmi: %.mli
51         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
52 %.cmo: %.ml
53         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
54 %.cmx: %.ml
55         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -c $< -o $@
56
57 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
58
59 # OCaml dependencies.
60 depend: .depend
61
62 .depend: $(SOURCES)
63         rm -f $@ $@-t
64         $(OCAMLFIND) ocamldep $^ | \
65           $(SED) -e 's/ *$$//' | \
66           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
67           LANG=C sort > $@-t
68         mv $@-t $@
69
70 -include .depend
71
72 # Manual page.
73 man_MANS = virt-similarity.1
74
75 virt-similarity.1: virt-similarity.pod
76         pod2man \
77           -c "Virtualization Tools" \
78           --release "$(PACKAGE)-$(VERSION)" \
79           --section 1 \
80           --stderr --utf8 \
81           $< > $@
82
83 rpm: dist
84         rpmbuild -ta $(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.gz
85
86 licensecheck:
87         licensecheck $$(git ls-files)