]>
git.saurik.com Git - bison.git/blob - src/getargs.c
1 /* Parse command line arguments for bison,
2 Copyright (C) 1984, 1986, 1989 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
30 char *spec_name_prefix
; /* for -p. */
31 char *spec_file_prefix
; /* for -b. */
32 extern int fixed_outfiles
;/* for -y */
34 extern char *program_name
;
35 extern char *version_string
;
39 struct option longopts
[] =
41 {"debug", 0, &debugflag
, 1},
42 {"defines", 0, &definesflag
, 1},
43 {"file-prefix", 1, 0, 'b'},
44 {"fixed-output-files", 0, &fixed_outfiles
, 1},
46 {"name-prefix", 1, 0, 'a'},
47 {"no-lines", 0, &nolinesflag
, 1},
48 {"output", 1, 0, 'o'},
49 {"output-file", 1, 0, 'o'},
50 {"verbose", 0, &verboseflag
, 1},
51 {"version", 0, 0, 'V'},
52 {"yacc", 0, &fixed_outfiles
, 1},
61 Usage: %s [-dhltvyV] [-b file-prefix] [-o outfile] [-p name-prefix]\n\
62 [--debug] [--defines] [--fixed-output-files] [--no-lines]\n\
63 [--verbose] [--version] [--help] [--yacc]\n\
64 [--file-prefix=prefix] [--name-prefix=prefix]\n\
65 [--output=outfile] grammar-file\n",
81 while ((c
= getopt_long (argc
, argv
, "yvdhltVo:b:p:", longopts
, (int *)0))
87 /* Certain long options cause getopt_long to return 0. */
99 printf ("%s", version_string
);
119 spec_outfile
= optarg
;
123 spec_file_prefix
= optarg
;
127 spec_name_prefix
= optarg
;
138 fprintf(stderr
, "%s: no grammar file given\n", program_name
);
141 if (optind
< argc
- 1)
142 fprintf(stderr
, "%s: warning: extra arguments ignored\n", program_name
);
144 infile
= argv
[optind
];