9a693a642b973b38f8c8bbdfbad166729cc444cc
[whenjobs.git] / tests / parsing / Makefile.am
1 # whenjobs
2 # Copyright (C) 2012 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 tests = t010_load.cmo t020_simple.cmo t030_jobnames.cmo
19
20 check_SCRIPTS = test_load $(tests)
21
22 TESTS_ENVIRONMENT = ./test_load
23 TESTS = $(tests)
24
25 OCAMLPACKAGES = -package unix,camlp4.lib
26
27 OCAMLCFLAGS = \
28         -g -warn-error CDEFLMPSUVYZX \
29         -I +camlp4 -I ../../daemon \
30         $(OCAMLPACKAGES)
31 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
32
33 PP = -pp '$(CAMLP4O) ../../daemon/pa_when.cmo'
34
35 test_load: test_load.cmo
36         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -linkpkg whenlib.cma $< -o $@
37
38 # Rules for all OCaml files.
39 %.cmi: %.mli ../../daemon/pa_when.cmo
40         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
41 %.cmo: %.ml ../../daemon/pa_when.cmo
42         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
43 #%.cmx: %.ml ../../daemon/pa_when.cmo
44 #       $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -c $< -o $@
45
46 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
47
48 # OCaml dependencies.
49 depend: .depend
50
51 .depend: $(SOURCES)
52         rm -f $@ $@-t
53         $(OCAMLFIND) ocamldep $(PP) $^ | \
54           $(SED) -e 's/ *$$//' | \
55           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
56           LANG=C sort > $@-t
57         mv $@-t $@
58
59 -include .depend
60
61 # Useful for debugging: print the generated AST for the tests.
62 print:
63         @for f in $(check_SCRIPTS); do \
64           b=`basename $$f .cmo`; \
65           echo "Test: $$b.ml"; \
66           camlp4o ../../daemon/pa_when.cmo -printer pr_o.cmo $$b.ml; \
67         done
68
69 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *~ test_load