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