Rename parsing/ to src/
[goals.git] / src / main.ml
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
20 open Printf
21
22 let usage =
23   "\
24 goals: Build software.
25
26  goals [-f Goalfile] ['var = value' ...] [target ...]
27
28 For detailed help see goals(1).
29
30 Options:"
31
32 let main () =
33   (* Command line arguments. *)
34   let filename = ref "Goalfile" in
35
36   let argspec = [
37     "-f",        Arg.Set_string filename,
38                  "filename Set name of Goalfile";
39     "--file",    Arg.Set_string filename,
40                  "filename Set name of Goalfile";
41   ] in
42   let argspec = Arg.align argspec in
43   let args = ref [] in
44   let anon_fun s = args := s :: !args in
45   Arg.parse argspec anon_fun usage;
46
47   (*let args = List.rev !args in*)
48   let filename = !filename in
49
50   (* Parse the input file. *)
51   let file = Parse.parse_from_file filename in
52
53   Ast.print_file stdout file
54
55 let () = main ()