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