Generated files.

git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@24624 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-03-28 14:15:10 +00:00
parent 7b6de8037d
commit 6835558076
5 changed files with 2129 additions and 1265 deletions

View File

@ -211,7 +211,7 @@ const char *jambase[] = {
"YACCFILES ?= y.tab ;\n", "YACCFILES ?= y.tab ;\n",
"YACCFLAGS ?= -d ;\n", "YACCFLAGS ?= -d ;\n",
"}\n", "}\n",
"else if $(OS) = BEOS \n", "else if $(OS) = BEOS || $(OS) = HAIKU\n",
"{\n", "{\n",
"BINDIR ?= /boot/home/config/bin ;\n", "BINDIR ?= /boot/home/config/bin ;\n",
"CC ?= gcc ;\n", "CC ?= gcc ;\n",

File diff suppressed because it is too large Load Diff

View File

@ -1,54 +1,153 @@
#ifndef YYSTYPE /* A Bison parser, made by GNU Bison 2.3. */
#define YYSTYPE int
#endif
#define _BANG_t 257
#define _BANG_EQUALS_t 258
#define _AMPER_t 259
#define _AMPERAMPER_t 260
#define _LPAREN_t 261
#define _RPAREN_t 262
#define _PLUS_EQUALS_t 263
#define _COLON_t 264
#define _SEMIC_t 265
#define _LANGLE_t 266
#define _LANGLE_EQUALS_t 267
#define _EQUALS_t 268
#define _RANGLE_t 269
#define _RANGLE_EQUALS_t 270
#define _QUESTION_EQUALS_t 271
#define _LBRACKET_t 272
#define _RBRACKET_t 273
#define ACTIONS_t 274
#define BIND_t 275
#define BREAK_t 276
#define CASE_t 277
#define CONTINUE_t 278
#define DEFAULT_t 279
#define ELSE_t 280
#define EXISTING_t 281
#define FOR_t 282
#define IF_t 283
#define IGNORE_t 284
#define IN_t 285
#define INCLUDE_t 286
#define JUMPTOEOF_t 287
#define LOCAL_t 288
#define MAXLINE_t 289
#define ON_t 290
#define PIECEMEAL_t 291
#define QUIETLY_t 292
#define RETURN_t 293
#define RULE_t 294
#define SWITCH_t 295
#define TOGETHER_t 296
#define UPDATED_t 297
#define WHILE_t 298
#define _LBRACE_t 299
#define _BAR_t 300
#define _BARBAR_t 301
#define _RBRACE_t 302
#define ARG 303
#define STRING 304
/* Skeleton interface for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
_LANGLE_t = 258,
_LANGLE_EQUALS_t = 259,
_EQUALS_t = 260,
_RANGLE_t = 261,
_RANGLE_EQUALS_t = 262,
_BAR_t = 263,
_BARBAR_t = 264,
_SEMIC_t = 265,
_COLON_t = 266,
_BANG_t = 267,
_BANG_EQUALS_t = 268,
_QUESTION_EQUALS_t = 269,
_LPAREN_t = 270,
_RPAREN_t = 271,
_LBRACKET_t = 272,
_RBRACKET_t = 273,
_LBRACE_t = 274,
_RBRACE_t = 275,
_AMPER_t = 276,
_AMPERAMPER_t = 277,
_PLUS_EQUALS_t = 278,
ACTIONS_t = 279,
BIND_t = 280,
BREAK_t = 281,
CASE_t = 282,
CONTINUE_t = 283,
DEFAULT_t = 284,
ELSE_t = 285,
EXISTING_t = 286,
FOR_t = 287,
IF_t = 288,
IGNORE_t = 289,
IN_t = 290,
INCLUDE_t = 291,
JUMPTOEOF_t = 292,
LOCAL_t = 293,
MAXLINE_t = 294,
ON_t = 295,
PIECEMEAL_t = 296,
QUIETLY_t = 297,
RETURN_t = 298,
RULE_t = 299,
SWITCH_t = 300,
TOGETHER_t = 301,
UPDATED_t = 302,
WHILE_t = 303,
ARG = 304,
STRING = 305
};
#endif
/* Tokens. */
#define _LANGLE_t 258
#define _LANGLE_EQUALS_t 259
#define _EQUALS_t 260
#define _RANGLE_t 261
#define _RANGLE_EQUALS_t 262
#define _BAR_t 263
#define _BARBAR_t 264
#define _SEMIC_t 265
#define _COLON_t 266
#define _BANG_t 267
#define _BANG_EQUALS_t 268
#define _QUESTION_EQUALS_t 269
#define _LPAREN_t 270
#define _RPAREN_t 271
#define _LBRACKET_t 272
#define _RBRACKET_t 273
#define _LBRACE_t 274
#define _RBRACE_t 275
#define _AMPER_t 276
#define _AMPERAMPER_t 277
#define _PLUS_EQUALS_t 278
#define ACTIONS_t 279
#define BIND_t 280
#define BREAK_t 281
#define CASE_t 282
#define CONTINUE_t 283
#define DEFAULT_t 284
#define ELSE_t 285
#define EXISTING_t 286
#define FOR_t 287
#define IF_t 288
#define IGNORE_t 289
#define IN_t 290
#define INCLUDE_t 291
#define JUMPTOEOF_t 292
#define LOCAL_t 293
#define MAXLINE_t 294
#define ON_t 295
#define PIECEMEAL_t 296
#define QUIETLY_t 297
#define RETURN_t 298
#define RULE_t 299
#define SWITCH_t 300
#define TOGETHER_t 301
#define UPDATED_t 302
#define WHILE_t 303
#define ARG 304
#define STRING 305
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef int YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
extern YYSTYPE yylval; extern YYSTYPE yylval;

View File

@ -1,20 +1,24 @@
%token _BANG_t
%token _BANG_EQUALS_t
%token _AMPER_t
%token _AMPERAMPER_t
%token _LPAREN_t
%token _RPAREN_t
%token _PLUS_EQUALS_t
%token _COLON_t
%token _SEMIC_t
%token _LANGLE_t %token _LANGLE_t
%token _LANGLE_EQUALS_t %token _LANGLE_EQUALS_t
%token _EQUALS_t %token _EQUALS_t
%token _RANGLE_t %token _RANGLE_t
%token _RANGLE_EQUALS_t %token _RANGLE_EQUALS_t
%token _BAR_t
%token _BARBAR_t
%token _SEMIC_t
%token _COLON_t
%token _BANG_t
%token _BANG_EQUALS_t
%token _QUESTION_EQUALS_t %token _QUESTION_EQUALS_t
%token _LPAREN_t
%token _RPAREN_t
%token _LBRACKET_t %token _LBRACKET_t
%token _RBRACKET_t %token _RBRACKET_t
%token _LBRACE_t
%token _RBRACE_t
%token _AMPER_t
%token _AMPERAMPER_t
%token _PLUS_EQUALS_t
%token ACTIONS_t %token ACTIONS_t
%token BIND_t %token BIND_t
%token BREAK_t %token BREAK_t
@ -40,10 +44,6 @@
%token TOGETHER_t %token TOGETHER_t
%token UPDATED_t %token UPDATED_t
%token WHILE_t %token WHILE_t
%token _LBRACE_t
%token _BAR_t
%token _BARBAR_t
%token _RBRACE_t
/* /*
* Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc. * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
* *

View File

@ -1,20 +1,24 @@
{ "!", _BANG_t },
{ "!=", _BANG_EQUALS_t },
{ "&", _AMPER_t },
{ "&&", _AMPERAMPER_t },
{ "(", _LPAREN_t },
{ ")", _RPAREN_t },
{ "+=", _PLUS_EQUALS_t },
{ ":", _COLON_t },
{ ";", _SEMIC_t },
{ "<", _LANGLE_t }, { "<", _LANGLE_t },
{ "<=", _LANGLE_EQUALS_t }, { "<=", _LANGLE_EQUALS_t },
{ "=", _EQUALS_t }, { "=", _EQUALS_t },
{ ">", _RANGLE_t }, { ">", _RANGLE_t },
{ ">=", _RANGLE_EQUALS_t }, { ">=", _RANGLE_EQUALS_t },
{ "|", _BAR_t },
{ "||", _BARBAR_t },
{ ";", _SEMIC_t },
{ ":", _COLON_t },
{ "!", _BANG_t },
{ "!=", _BANG_EQUALS_t },
{ "?=", _QUESTION_EQUALS_t }, { "?=", _QUESTION_EQUALS_t },
{ "(", _LPAREN_t },
{ ")", _RPAREN_t },
{ "[", _LBRACKET_t }, { "[", _LBRACKET_t },
{ "]", _RBRACKET_t }, { "]", _RBRACKET_t },
{ "{", _LBRACE_t },
{ "}", _RBRACE_t },
{ "&", _AMPER_t },
{ "&&", _AMPERAMPER_t },
{ "+=", _PLUS_EQUALS_t },
{ "actions", ACTIONS_t }, { "actions", ACTIONS_t },
{ "bind", BIND_t }, { "bind", BIND_t },
{ "break", BREAK_t }, { "break", BREAK_t },
@ -40,7 +44,3 @@
{ "together", TOGETHER_t }, { "together", TOGETHER_t },
{ "updated", UPDATED_t }, { "updated", UPDATED_t },
{ "while", WHILE_t }, { "while", WHILE_t },
{ "{", _LBRACE_t },
{ "|", _BAR_t },
{ "||", _BARBAR_t },
{ "}", _RBRACE_t },