Add a $JOBSERIAL environment variable when jobs run.
[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,num,camlp4.lib,calendar,rpc -I ../../lib
26
27 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
28 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
29
30 PP = -pp '$(CAMLP4O) ../../lib/pa_when.cmo'
31
32 test_load: test_load.cmo ../../lib/whenlib.cma
33         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -linkpkg whenlib.cma $< -o $@
34
35 # Rules for all OCaml files.
36 %.cmi: %.mli
37         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
38 %.cmo: %.ml
39         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
40 #%.cmx: %.ml
41 #       $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -c $< -o $@
42
43 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
44
45 # OCaml dependencies.
46 depend: .depend
47
48 .depend: $(SOURCES)
49         rm -f $@ $@-t
50         $(OCAMLFIND) ocamldep $(PP) $^ | \
51           $(SED) -e 's/ *$$//' | \
52           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
53           LANG=C sort > $@-t
54         mv $@-t $@
55
56 -include .depend
57
58 # Useful for debugging: print the generated AST for the tests.
59 print:
60         @for f in $(check_SCRIPTS); do \
61           b=`basename $$f .cmo`; \
62           echo "Test: $$b.ml"; \
63           camlp4o ../../lib/pa_when.cmo -printer pr_o.cmo $$b.ml; \
64         done
65
66 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *~ test_load