Renumber the jobs file so that it can be reloaded in native code.
[whenjobs.git] / tests / jobs / 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 EXTRA_DIST = test_run.sh $(TESTS) $(TESTS:.ml=.ml.expected)
19
20 TESTS_ENVIRONMENT = ./test_run.sh
21 TESTS = \
22         t100_counter.ml \
23         t101_updown.ml \
24         t102_manyjobs.ml \
25         t103_whisper.ml \
26         t200_ocaml_jobnames.ml \
27         t201_ocaml_set_variable.ml \
28         t300_reload.ml
29
30 OCAMLPACKAGES = -package unix,num,camlp4.lib,calendar,rpc -I ../../lib
31
32 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
33 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
34
35 PP = -pp '$(CAMLP4O) ../../lib/pa_when.cmo'
36
37 # Rules for all OCaml files.
38 %.cmi: %.mli ../../lib/pa_when.cmo
39         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
40 %.cmo: %.ml ../../lib/pa_when.cmo
41         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
42 #%.cmx: %.ml ../../lib/pa_when.cmo
43 #       $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -c $< -o $@
44
45 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
46
47 # OCaml dependencies.
48 depend: .depend
49
50 .depend: $(SOURCES)
51         rm -f $@ $@-t
52         $(OCAMLFIND) ocamldep $(PP) $^ | \
53           $(SED) -e 's/ *$$//' | \
54           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
55           LANG=C sort > $@-t
56         mv $@-t $@
57
58 -include .depend
59
60 # Useful for debugging: print the generated AST for the tests.
61 print:
62         @for f in $(check_SCRIPTS); do \
63           b=`basename $$f .cmo`; \
64           echo "Test: $$b.ml"; \
65           camlp4o ../../lib/pa_when.cmo -printer pr_o.cmo $$b.ml; \
66         done
67
68 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *~