diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-02-16 12:44:24 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-02-16 12:44:24 -0500 |
commit | 26eaa6e5978b02dedfa7aae7f10be3b0c4d3cb15 (patch) | |
tree | ba501ab16485db702662aefb5d578fc0fd1b2b73 /Makefile.am | |
parent | 268fdfe6efbce76f316d96cc6efc9721766f9c22 (diff) |
Add lexers module.
This starts the transition away from the flawed parser combinators to
something really similar, but more capable.
* syntax-highlight/lexers.scm: New file.
* Makefile.am(SOURCES): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c838685..965ee08 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,6 +40,7 @@ godir=$(libdir)/guile/2.0/ccache SOURCES = \ syntax-highlight/utils.scm \ + syntax-highlight/lexers.scm \ syntax-highlight/parsers.scm \ syntax-highlight/scheme.scm \ syntax-highlight/xml.scm \ |