vmware-uefi: Add login screenshots.
[virt-v2v-test-cases-nonfree.git] / common-rules.mk
1 # virt-v2v test cases (not redistributable)
2 # Copyright (C) 2014-2015 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 CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o *.a *.so
19
20 OCAMLFLAGS = -g -warn-error CDEFLMPSUVYZX-3-24
21
22 if INSTALLED_TEST_HARNESS
23 OCAMLLINKPKG  =
24 else
25 OCAMLLINKPKG  = mllib.cmxa v2v_test_harness.cmxa -cclib '-lutils -lgnu'
26 endif
27
28 OCAMLPACKAGES  = -package str,unix,gettext-stub,libvirt,guestfs
29 OCAMLLINKPKG  += -linkpkg
30
31 if INSTALLED_TEST_HARNESS
32 OCAMLPACKAGES += -package v2v_test_harness
33 else
34 OCAMLPACKAGES += \
35         -I $(TEST_HARNESS_DIR)/../../src/.libs \
36         -I $(TEST_HARNESS_DIR)/../../gnulib/lib/.libs \
37         -I $(TEST_HARNESS_DIR)/../../mllib \
38         -I $(TEST_HARNESS_DIR)
39 endif
40
41 # XXX FIXME
42 # We don't distribute the xml.* files with the test harness.
43 OCAMLFLAGS += -I $(top_srcdir)/../libguestfs/v2v
44
45 ocamllib := $(shell ocamlc -where)
46
47 # Dependencies.
48 %.cmi: %.mli
49         $(OCAMLFIND) ocamlc $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
50 %.cmo: %.ml
51         $(OCAMLFIND) ocamlc $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
52 %.cmx: %.ml
53         $(OCAMLFIND) ocamlopt $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
54
55 depend: .depend
56
57 .depend: $(wildcard $(srcdir)/*.mli $(srcdir)/*.ml)
58         rm -f $@ $@-t
59         $(OCAMLFIND) ocamldep -I . -I $(srcdir) $^ | \
60           $(SED) 's/ *$$//' | \
61           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
62           sort > $@-t
63         mv $@-t $@
64
65 -include .depend
66
67 SUFFIXES = .cmo .cmi .cmx .ml .mli