RHEL 5.11 full-virt now boots to login prompt.
[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)/../../common/utils/.libs \
36         -I $(TEST_HARNESS_DIR)/../../src/.libs \
37         -I $(TEST_HARNESS_DIR)/../../gnulib/lib/.libs \
38         -I $(TEST_HARNESS_DIR)/../../mllib \
39         -I $(TEST_HARNESS_DIR)
40 endif
41
42 # XXX FIXME
43 # We don't distribute the xml.* files with the test harness.
44 OCAMLFLAGS += -I $(top_srcdir)/../libguestfs/v2v
45
46 ocamllib := $(shell ocamlc -where)
47
48 # Dependencies.
49 %.cmi: %.mli
50         $(OCAMLFIND) ocamlc $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
51 %.cmo: %.ml
52         $(OCAMLFIND) ocamlc $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
53 %.cmx: %.ml
54         $(OCAMLFIND) ocamlopt $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
55
56 depend: .depend
57
58 .depend: $(wildcard $(srcdir)/*.mli $(srcdir)/*.ml)
59         rm -f $@ $@-t
60         $(OCAMLFIND) ocamldep -I . -I $(srcdir) $^ | \
61           $(SED) 's/ *$$//' | \
62           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
63           sort > $@-t
64         mv $@-t $@
65
66 -include .depend
67
68 SUFFIXES = .cmo .cmi .cmx .ml .mli