summary refs log tree commit diff
path: root/bin/hilex/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-28 22:44:25 -0500
committerJune McEnroe <june@causal.agency>2020-12-28 22:48:06 -0500
commit8cb2140bbeb2baa4db3de40e2b9b3c34914e4bcf (patch)
treea13b7190bd15772b95f599e2819279b8d3299fa3 /bin/hilex/Makefile
parentLex strings inside macros (diff)
downloadsrc-8cb2140bbeb2baa4db3de40e2b9b3c34914e4bcf.tar.gz
src-8cb2140bbeb2baa4db3de40e2b9b3c34914e4bcf.zip
Add mdoc lexer
Diffstat (limited to '')
-rw-r--r--bin/hilex/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/hilex/Makefile b/bin/hilex/Makefile
index 4a930757..3fd11069 100644
--- a/bin/hilex/Makefile
+++ b/bin/hilex/Makefile
@@ -3,6 +3,7 @@ CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
 OBJS += ansi.o
 OBJS += c.o
 OBJS += hilex.o
+OBJS += mdoc.o
 OBJS += text.o
 
 hilex: ${OBJS}