+ /* If --file-prefix=foo was specified, FULL_BASE_NAME = `foo.tab'
+ and SHORT_BASE_NAME = `foo'.
+
+ Construct names from it. */
+ else
+ {
+ if (spec_file_prefix)
+ {
+ /* If --file-prefix=foo was specified, SHORT_BASE_NAME =
+ `foo'. */
+ short_base_name = xstrdup (spec_file_prefix);
+ }
+ else if (yacc_flag)
+ {
+ /* If --yacc, then the output is `y.tab.c'. */
+ short_base_name = xstrdup ("y");
+ }
+ else
+ {
+ /* Otherwise, the short base name is computed from the input
+ grammar: `foo.yy' => `foo'. */
+ filename_split (infile, &base, &tab, &ext);
+ short_base_name =
+ xstrndup (infile,
+ (strlen (infile) - (ext ? strlen (ext) : 0)));
+ }
+
+ /* In these cases, always append `.tab'. */
+ output_infix = xstrdup (EXT_TAB);
+
+ full_base_name = XMALLOC (char,
+ strlen (short_base_name)
+ + strlen (EXT_TAB) + 1);
+ stpcpy (stpcpy (full_base_name, short_base_name), EXT_TAB);
+
+ /* Computes the extensions from the grammar file name. */
+ filename_split (infile, &base, &tab, &ext);
+ if (ext && !yacc_flag)
+ compute_exts_from_gf (ext);
+ }
+}
+
+/*-------------------------------------------------------.
+| Close the open files, compute the output files names. |
+`-------------------------------------------------------*/
+
+void
+compute_output_file_names (void)
+{
+ compute_base_names ();
+
+ /* If not yet done. */
+ if (!src_extension)
+ src_extension = ".c";
+ if (!header_extension)
+ header_extension = ".h";
+
+ parser_file_name =
+ spec_outfile ? spec_outfile : stringappend (full_base_name, src_extension);
+
+ /* It the defines filename if not given, we create it. */
+ if (!spec_defines_file)
+ spec_defines_file = stringappend (full_base_name, header_extension);
+
+ /* It the graph filename if not given, we create it. */
+ if (!spec_graph_file)
+ spec_graph_file = stringappend (short_base_name, ".vcg");
+
+ spec_verbose_file = stringappend (short_base_name, EXT_OUTPUT);
+
+ attrsfile = stringappend (short_base_name, EXT_STYPE_H);