diff options
author | June McEnroe <june@causal.agency> | 2020-04-08 16:55:57 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-08 16:55:57 -0400 |
commit | dbcd584e8c150d81a74dba63c32ff0d31da89dbb (patch) | |
tree | b8603cfd49f55e9be2d0777e454c434421b5dd0e /Makefile | |
parent | Use a real IMAP parser (diff) | |
download | imbox-dbcd584e8c150d81a74dba63c32ff0d31da89dbb.tar.gz imbox-dbcd584e8c150d81a74dba63c32ff0d31da89dbb.zip |
Add compat.h dependency to Makefile
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
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} |