Initial commit of parser.
[goals.git] / parsing / Makefile.in
1 # Goalfile parser
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 OBJECTS = ast.cmx parser.cmx lexer.cmx main.cmx
20
21 all: goals
22
23 clean:
24         rm -f *~
25         rm -f *.cmi *.cmo *.cmx *.o
26         rm -f parser.ml parser.mli lexer.ml parser.conflicts stamp-parser
27         rm -f goals
28
29 goals: $(OBJECTS)
30         @OCAMLFIND@ opt $^ -o $@
31
32 OCAMLFLAGS = -g -safe-string -warn-error CDEFLMPSUVYZX+52-3
33
34 %.cmi: %.mli
35         @OCAMLFIND@ c $(OCAMLFLAGS) -c $< -o $@
36 %.cmo: %.ml
37         @OCAMLFIND@ c $(OCAMLFLAGS) -c $< -o $@
38 %.cmx: %.ml
39         @OCAMLFIND@ opt $(OCAMLFLAGS) -c $< -o $@
40
41 parser.ml parser.mli: stamp-parser
42 stamp-parser: parser.mly
43         @MENHIR@ --explain $<
44         touch $@
45
46 lexer.ml: lexer.mll lexer.cmi parser.ml
47         @OCAMLLEX@ $<
48
49 depend: .depend
50
51 .depend: parser.mly lexer.mll *.mli
52         rm -f $@ $@-t
53         @MENHIR@ --depend parser.mly > $@-t
54         ocamldep lexer.mll *.ml *.mli >> $@-t
55         mv $@-t $@
56
57 -include .depend
58
59 Makefile: Makefile.in ../config.status
60         ../config.status Makefile
61
62 .PHONY: all clean depend
63
64 # Doesn't build all *.cmi files before *.cmo/cmx files:
65 #.NOTPARALLEL: