summary refs log tree commit diff
path: root/bin/hilex/hilex.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-29 22:39:16 -0500
committerJune McEnroe <june@causal.agency>2020-12-29 22:39:16 -0500
commitb2de730b6105964949df8bcf3937704108ba12b0 (patch)
treed8a1653d32432b9cf5c4ae1df806c172f3f44cb6 /bin/hilex/hilex.h
parentClean up C lexer (diff)
downloadsrc-b2de730b6105964949df8bcf3937704108ba12b0.tar.gz
src-b2de730b6105964949df8bcf3937704108ba12b0.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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/hilex/hilex.h b/bin/hilex/hilex.h
index f9dcea24..fa16f1b6 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;