Note that mailto is a post function.
[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         t200_ocaml_jobnames.ml \
26         t201_ocaml_set_variable.ml
27
28 OCAMLPACKAGES = -package unix,num,camlp4.lib,calendar,rpc -I ../../lib
29
30 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
31 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
32
33 PP = -pp '$(CAMLP4O) ../../lib/pa_when.cmo'
34
35 # Rules for all OCaml files.
36 %.cmi: %.mli ../../lib/pa_when.cmo
37         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
38 %.cmo: %.ml ../../lib/pa_when.cmo
39         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) -c $< -o $@
40 #%.cmx: %.ml ../../lib/pa_when.cmo
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 *~