summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-08 16:55:57 -0400
committerJune McEnroe <june@causal.agency>2020-04-08 16:55:57 -0400
commitdbcd584e8c150d81a74dba63c32ff0d31da89dbb (patch)
treeb8603cfd49f55e9be2d0777e454c434421b5dd0e
parentUse a real IMAP parser (diff)
downloadimbox-dbcd584e8c150d81a74dba63c32ff0d31da89dbb.tar.gz
imbox-dbcd584e8c150d81a74dba63c32ff0d31da89dbb.zip
Add compat.h dependency to Makefile
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b9b2152..a22cd7c 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ all: ${BINS}
 imbox: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
 
-${OBJS}: imap.h
+${OBJS}: compat.h imap.h
 
 clean:
 	rm -f ${BINS} ${OBJS}