diff options
author | June McEnroe <june@causal.agency> | 2020-12-29 22:39:16 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-29 22:39:16 -0500 |
commit | 7c70322c7c8e88af93375b89146b0cd6cb8cc7f0 (patch) | |
tree | 109495ff8c3b181f871d38d8b5d34835d23a185c /bin/hilex/hilex.h | |
parent | Clean up C lexer (diff) | |
download | src-7c70322c7c8e88af93375b89146b0cd6cb8cc7f0.tar.gz src-7c70322c7c8e88af93375b89146b0cd6cb8cc7f0.zip |
Add make lexer
This is kind of a mess and needs to be cleaned up against more careful reading of the make grammar.
Diffstat (limited to '')
-rw-r--r-- | bin/hilex/hilex.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/hilex/hilex.h b/bin/hilex/hilex.h index 93272bc0..3b796709 100644 --- a/bin/hilex/hilex.h +++ b/bin/hilex/hilex.h @@ -30,7 +30,8 @@ X(Comment) \ X(String) \ X(StringEscape) \ - X(StringFormat) + X(StringFormat) \ + X(Interpolation) enum Class { #define X(class) class, @@ -47,6 +48,7 @@ struct Lexer { }; extern const struct Lexer LexC; +extern const struct Lexer LexMake; extern const struct Lexer LexMdoc; extern const struct Lexer LexText; |