That's the price to pay for having generated files in the CVS.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@197 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2002-07-14 00:43:37 +00:00
parent ab8f576120
commit 0702d16ff6
3 changed files with 1208 additions and 717 deletions

View File

@ -206,12 +206,19 @@ char *jambase[] = {
"BINDIR ?= /boot/apps ;\n",
"CC ?= gcc ;\n",
"C++ ?= $(CC) ;\n",
"CHMOD ?= chmod ;\n",
"CHGRP ?= chgrp ;\n",
"CHOWN ?= chown ;\n",
"FORTRAN ?= \"\" ;\n",
"LIBDIR ?= /boot/develop/libraries ;\n",
"LINK ?= gcc ;\n",
"LINKLIBS ?= -lnet ;\n",
"NOARSCAN ?= true ;\n",
"RANLIB ?= ranlib ;\n",
"STDHDRS ?= /boot/develop/headers/posix ;\n",
"YACC ?= bison -y ;\n",
"YACCGEN ?= .c ;\n",
"YACCFILES ?= y.tab ;\n",
"YACCFLAGS ?= -d ;\n",
"}\n",
"else if $(UNIX)\n",
"{\n",

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,6 @@
#ifndef YYERRCODE
#define YYERRCODE 256
#ifndef YYSTYPE
#define YYSTYPE int
#endif
#define _BANG_t 257
#define _BANG_EQUALS_t 258
#define _AMPER_t 259
@ -46,3 +45,6 @@
#define _RBRACE_t 298
#define ARG 299
#define STRING 300
extern YYSTYPE yylval;