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