diff options
author | June McEnroe <june@causal.agency> | 2021-01-20 18:01:04 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-20 18:04:04 -0500 |
commit | 02a9d8a8b07530f50d27b6158329dd8d218d298b (patch) | |
tree | 0cf2b2c323758df778fcef13c9fa93f7a1c7c4d7 /bin/Makefile | |
parent | Add all target to git.causal.agency Makefile (diff) | |
download | src-02a9d8a8b07530f50d27b6158329dd8d218d298b.tar.gz src-02a9d8a8b07530f50d27b6158329dd8d218d298b.zip |
Add messy sh lexer
Surprisingly seems to work for everything I looked at in my repos.
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/Makefile b/bin/Makefile index b133232f..7e6b0b7d 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -83,6 +83,7 @@ OBJS.hilex += c11.o OBJS.hilex += hilex.o OBJS.hilex += make.o OBJS.hilex += mdoc.o +OBJS.hilex += sh.o hilex: ${OBJS.hilex} ${CC} ${LDFLAGS} ${OBJS.$@} ${LDLIBS.$@} -o $@ |