+ 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);
+ }
+}