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 | fa48f70dfcee8388fcb4e0d449d6d5bc4e5cfc68 (patch) | |
tree | fe33da042f097a918eb979c5591e1d4ea555fee0 /bin/Makefile | |
parent | Add all target to git.causal.agency Makefile (diff) | |
download | src-fa48f70dfcee8388fcb4e0d449d6d5bc4e5cfc68.tar.gz src-fa48f70dfcee8388fcb4e0d449d6d5bc4e5cfc68.zip |
Add messy sh lexer
Surprisingly seems to work for everything I looked at in my repos.
Diffstat (limited to 'bin/Makefile')
-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 $@ |