In dependency file, use ; between statements.
[goals.git] / Goalfile.in
1 # Goalfile
2 # Copyright (C) 2019 Richard W.M. Jones
3 # Copyright (C) 2019 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 include "ocaml.gl"
20
21 let MENHIR = "@MENHIR@"
22 let OCAMLDEP = "@OCAMLDEP@"
23 let OCAMLFIND = "@OCAMLFIND@"
24 let OCAMLLEX = "@OCAMLLEX@"
25 # XXX
26 let OCAMLFLAGS = [ "-g", "-safe-string", "-warn-error", "CDEFLMPSUVYZX+52-3" ]
27 let OCAMLPACKAGES = [ "-package", "str,unix", "-I", "src" ]
28 #let OCAMLFLAGS = "@OCAMLFLAGS@"
29 #let OCAMLPACKAGES = "@OCAMLPACKAGES@"
30
31 let objects = [
32     "src/config.cmx",
33     "src/utils.cmx",
34     "src/cmdline.cmx",
35     "src/ast.cmx",
36     "src/eval.cmx",
37     "src/run.cmx",
38     "src/parser.cmx",
39     "src/lexer.cmx",
40     "src/parse.cmx",
41     "src/main.cmx"
42 ]
43
44 goal all = : ocaml_link ("src/goals", objects)
45
46 goal clean = {
47     for d in `find -type d`; do
48         pushd $d
49         rm -f *~
50         rm -f *.cmi *.cmo *.cmx *.o
51     done
52     rm -f src/parser.ml src/parser.mli src/lexer.ml src/parser.conflicts
53
54     # We don't delete src/goals because it is required to do builds.
55     # If you want to really delete it, use the maintainer-clean rule.
56 }
57
58 goal maintainer-clean = : clean {
59     rm -f src/goals
60 }
61
62 "src/parser.mli", "src/parser.ml" : "src/parser.mly" {
63     %MENHIR --explain %<
64 }
65
66 "src/lexer.ml" : "src/lexer.mll" {
67     %OCAMLLEX %<
68 }
69
70 # XXX Depends on *.ml *.mli, but we don't have a function for this yet.
71 # XXX Goalfile itself depends on this and we should probably have a
72 # way to reevaluate it.
73 # XXX Atomic output.
74 # XXX GNU sed: https://unix.stackexchange.com/a/13704
75 "src/.depend" : {
76     rm -f %@ %@-t
77     # Like many existing tools, ocamldep produces make-compatible
78     # output which doesn't work directly in goals.
79     %OCAMLDEP src/*.ml src/*.mli |
80         sed ':x; /\\$/ { N; s/\\\n//; tx }' |
81         sed 's,[./[:alnum:]]\+,"&",g' |
82         sed 's,.*,& ;,' > %@-t
83     mv %@-t %@
84 }
85
86 -include "src/.depend"
87
88 # XXX The Goalfile itself needs rules to rebuild it.
89 #Makefile: Makefile.in ../config.status
90 #        ../config.status $@
91 #config.ml: config.ml.in ../config.status
92 #        ../config.status $@