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