Implement -include (optional include) command.
[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         config.cmx \
21         utils.cmx \
22         cmdline.cmx \
23         ast.cmx \
24         eval.cmx \
25         parser.cmx \
26         lexer.cmx \
27         parse.cmx \
28         main.cmx
29
30 all: goals
31
32 clean:
33         rm -f *~
34         rm -f *.cmi *.cmo *.cmx *.o
35         rm -f parser.ml parser.mli lexer.ml parser.conflicts stamp-parser
36         rm -f goals
37
38 OCAMLPACKAGES = -package str,unix
39 OCAMLFLAGS = -g -safe-string -warn-error CDEFLMPSUVYZX+52-3
40
41 goals: $(OBJECTS)
42         @OCAMLFIND@ opt $(OCAMLFLAGS) $(OCAMLPACKAGES) -linkpkg $^ -o $@
43
44 %.cmi: %.mli
45         @OCAMLFIND@ c $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
46 %.cmo: %.ml
47         @OCAMLFIND@ c $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
48 %.cmx: %.ml
49         @OCAMLFIND@ opt $(OCAMLFLAGS) $(OCAMLPACKAGES) -c $< -o $@
50
51 parser.ml parser.mli: stamp-parser
52 stamp-parser: parser.mly
53         @MENHIR@ --explain $<
54 # Hack required to get includes working.
55         echo 'val lexer_read : (Lexing.lexbuf -> token) option ref' >> parser.mli
56         touch $@
57
58 lexer.ml: lexer.mll lexer.cmi parser.ml
59         @OCAMLLEX@ $<
60
61 depend: .depend
62
63 .depend: parser.mly lexer.mll *.mli
64         rm -f $@ $@-t
65         @MENHIR@ --depend parser.mly > $@-t
66         ocamldep lexer.mll *.ml *.mli >> $@-t
67         mv $@-t $@
68
69 -include .depend
70
71 Makefile: Makefile.in ../config.status
72         ../config.status $@
73
74 config.ml: config.ml.in ../config.status
75         ../config.status $@
76
77 .PHONY: all clean depend
78
79 # Doesn't build all *.cmi files before *.cmo/cmx files:
80 #.NOTPARALLEL: