2 # Copyright (C) 2019 Richard W.M. Jones
3 # Copyright (C) 2019 Red Hat Inc.
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.
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.
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.
21 let MENHIR = "@MENHIR@"
22 let OCAMLDEP = "@OCAMLDEP@"
23 let OCAMLFIND = "@OCAMLFIND@"
24 let OCAMLLEX = "@OCAMLLEX@"
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@"
44 let subdirs = [ "m4", "src", "stdlib", "tests" ]
46 goal all = : ocaml_link ("src/goals", objects)
52 rm -f *.cmi *.cmo *.cmx *.o
55 rm -f src/parser.ml src/parser.mli src/lexer.ml src/parser.conflicts
57 # We don't delete src/goals because it is required to do builds.
58 # If you want to really delete it, use the maintainer-clean rule.
61 goal maintainer-clean = : clean {
65 "src/parser.mli", "src/parser.ml" : "src/parser.mly" {
67 # Hack required to get includes working.
68 echo 'val lexer_read : (Lexing.lexbuf -> token) option ref' \
72 "src/lexer.ml" : "src/lexer.mll" {
76 # XXX Goalfile itself depends on this and we should probably have a
77 # way to reevaluate it.
80 "src/.depend" : wildcard ("src/*.ml"), wildcard ("src/*.mli") {
82 # Like many existing tools, ocamldep produces make-compatible
83 # output which doesn't work directly in goals.
84 %OCAMLDEP -all -one-line -I src %< |
85 sed 's|[./[:alnum:]]\+|"&"|g' |
87 sed 's|.*|& ;|' > %@-t
91 -include "src/.depend"
93 # XXX The Goalfile itself needs rules to rebuild it.
94 #Makefile: Makefile.in ../config.status
96 #config.ml: config.ml.in ../config.status