about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-02-19 20:20:19 -0500
committerJune McEnroe <june@causal.agency>2022-02-19 20:20:19 -0500
commit073cebec7a5a07ab2b829e40ce47ec3b1d774bd9 (patch)
treead20f89bb88ca5bd3499c2628b03a00d67985a4c /Makefile
parentFactor out window management to window.c (diff)
downloadcatgirl-073cebec7a5a07ab2b829e40ce47ec3b1d774bd9.tar.gz
catgirl-073cebec7a5a07ab2b829e40ce47ec3b1d774bd9.zip
Factor out input handling to input.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dffe4e8..3abba03 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,7 @@ OBJS += config.o
 OBJS += edit.o
 OBJS += filter.o
 OBJS += handle.o
+OBJS += input.o
 OBJS += irc.o
 OBJS += log.o
 OBJS += ui.o
@@ -36,7 +37,9 @@ all: catgirl
 catgirl: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
 
-${OBJS} ${TESTS}: chat.h edit.h
+${OBJS}: chat.h
+
+edit.o edit.t input.o: edit.h
 
 check: ${TESTS}