2009-11-19 06:06:35 +01:00
|
|
|
%option noinput nounput
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
%{
|
|
|
|
/* arlex.l - Strange script language lexer */
|
|
|
|
|
2011-04-08 17:28:47 +02:00
|
|
|
/* Copyright 1992, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2011
|
2005-03-03 12:52:12 +01:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-05 18:54:46 +02:00
|
|
|
This file is part of GNU Binutils.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-05 18:54:46 +02:00
|
|
|
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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-05 18:54:46 +02:00
|
|
|
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.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-05 18:54:46 +02:00
|
|
|
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. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
2004-12-09 02:46:27 +01:00
|
|
|
/* Contributed by Steve Chamberlain <sac@cygnus.com>. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define DONTDECLARE_MALLOC
|
2002-05-25 14:51:38 +02:00
|
|
|
#include "ansidecl.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "libiberty.h"
|
|
|
|
#include "arparse.h"
|
|
|
|
|
2011-04-08 17:28:47 +02:00
|
|
|
#ifndef YY_NO_UNPUT
|
2001-12-04 15:29:11 +01:00
|
|
|
#define YY_NO_UNPUT
|
2011-04-08 17:28:47 +02:00
|
|
|
#endif
|
|
|
|
|
2003-09-14 14:20:17 +02:00
|
|
|
extern int yylex (void);
|
2001-12-04 15:29:11 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
int linenumber;
|
|
|
|
%}
|
2000-04-14 06:14:25 +02:00
|
|
|
|
|
|
|
%a 10000
|
|
|
|
%o 25000
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
%%
|
|
|
|
|
|
|
|
"ADDLIB" { return ADDLIB; }
|
|
|
|
"ADDMOD" { return ADDMOD; }
|
|
|
|
"CLEAR" { return CLEAR; }
|
|
|
|
"CREATE" { return CREATE; }
|
|
|
|
"DELETE" { return DELETE; }
|
|
|
|
"DIRECTORY" { return DIRECTORY; }
|
|
|
|
"END" { return END; }
|
|
|
|
"EXTRACT" { return EXTRACT; }
|
|
|
|
"FULLDIR" { return FULLDIR; }
|
|
|
|
"HELP" { return HELP; }
|
|
|
|
"LIST" { return LIST; }
|
|
|
|
"OPEN" { return OPEN; }
|
|
|
|
"REPLACE" { return REPLACE; }
|
|
|
|
"VERBOSE" { return VERBOSE; }
|
|
|
|
"SAVE" { return SAVE; }
|
|
|
|
"addlib" { return ADDLIB; }
|
|
|
|
"addmod" { return ADDMOD; }
|
|
|
|
"clear" { return CLEAR; }
|
|
|
|
"create" { return CREATE; }
|
|
|
|
"delete" { return DELETE; }
|
|
|
|
"directory" { return DIRECTORY; }
|
|
|
|
"end" { return END; }
|
|
|
|
"extract" { return EXTRACT; }
|
|
|
|
"fulldir" { return FULLDIR; }
|
|
|
|
"help" { return HELP; }
|
|
|
|
"list" { return LIST; }
|
|
|
|
"open" { return OPEN; }
|
|
|
|
"replace" { return REPLACE; }
|
|
|
|
"verbose" { return VERBOSE; }
|
|
|
|
"save" { return SAVE; }
|
|
|
|
"+\n" { linenumber ++; }
|
|
|
|
"(" { return '('; }
|
|
|
|
")" { return ')'; }
|
|
|
|
"," { return ','; }
|
2001-11-05 17:20:37 +01:00
|
|
|
[A-Za-z0-9/\\$:.\-\_]+ {
|
1999-05-03 09:29:11 +02:00
|
|
|
yylval.name = xstrdup (yytext);
|
|
|
|
return FILENAME;
|
|
|
|
}
|
|
|
|
"*".* { }
|
|
|
|
";".* { }
|
|
|
|
" " { }
|
|
|
|
"\n" { linenumber ++; return NEWLINE; }
|
|
|
|
|
|
|
|
%%
|
|
|
|
#ifndef yywrap
|
|
|
|
/* Needed for lex, though not flex. */
|
2003-09-14 14:20:17 +02:00
|
|
|
int yywrap(void) { return 1; }
|
1999-05-03 09:29:11 +02:00
|
|
|
#endif
|