about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-01 02:55:07 -0500
committerJune McEnroe <june@causal.agency>2020-02-01 02:55:07 -0500
commite289ff6b18e643eea4c72e04f7c0dc6ff768a335 (patch)
treed8f515192ac7756ffb908b8171787d7f3924637b /Makefile
parentAdd IDs and names (diff)
downloadcatgirl-e289ff6b18e643eea4c72e04f7c0dc6ff768a335.tar.gz
catgirl-e289ff6b18e643eea4c72e04f7c0dc6ff768a335.zip
Add term stuff
Copied almost verbatim from existing catgirl... I think I did a better
job on that state machine this time tbh.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 30bcf66..999b491 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@ LDLIBS = -lcrypto -ltls
 OBJS += chat.o
 OBJS += handle.o
 OBJS += irc.o
+OBJS += term.o
 
 catgirl: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@