From 7efd05778cddec0293e0d48199f3aeee2aad6178 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 18 Jan 2008 12:36:59 +0100 Subject: Add SILex, for simplicity. --- src/guile/silex/lex.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/guile/silex/lex.scm (limited to 'src/guile/silex/lex.scm') diff --git a/src/guile/silex/lex.scm b/src/guile/silex/lex.scm new file mode 100644 index 0000000..91ed570 --- /dev/null +++ b/src/guile/silex/lex.scm @@ -0,0 +1,38 @@ +; SILex - Scheme Implementation of Lex +; SILex 1.0. +; Copyright (C) 2001 Danny Dube' +; +; 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 +; of the License, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +; +; Chargement de tous les modules de lex +; + +(load "util.scm") +(load "action.l.scm") +(load "class.l.scm") +(load "macro.l.scm") +(load "regexp.l.scm") +(load "string.l.scm") +(load "multilex.scm") +(load "lexparser.scm") +(load "re2nfa.scm") +(load "noeps.scm") +(load "sweep.scm") +(load "nfa2dfa.scm") +(load "prep.scm") +(load "output.scm") +(load "output2.scm") +(load "main.scm") -- cgit v1.2.3