win_xpsp3_i386_no_tools: Add known-good booting screenshot.
[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  = v2v_test_harness.cmxa
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 += -I $(TEST_HARNESS_DIR)
35 endif
36
37 # XXX FIXME
38 # We don't distribute the xml.* files with the test harness.
39 OCAMLFLAGS += -I $(top_srcdir)/../libguestfs/v2v
40
41 ocamllib := $(shell ocamlc -where)
42
43 # Dependencies.
44 %.cmi: %.mli
45         $(OCAMLFIND) ocamlc $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
46 %.cmo: %.ml
47         $(OCAMLFIND) ocamlc $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
48 %.cmx: %.ml
49         $(OCAMLFIND) ocamlopt $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
50
51 depend: .depend
52
53 .depend: $(wildcard $(srcdir)/*.mli $(srcdir)/*.ml)
54         rm -f $@ $@-t
55         $(OCAMLFIND) ocamldep -I . -I $(srcdir) $^ | \
56           $(SED) 's/ *$$//' | \
57           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
58           sort > $@-t
59         mv $@-t $@
60
61 -include .depend
62
63 SUFFIXES = .cmo .cmi .cmx .ml .mli