diff options
author | June McEnroe <june@causal.agency> | 2020-04-09 13:00:39 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-09 13:00:39 -0400 |
commit | 97279adb45f3716f3a4a0c121e40f60b762fffb5 (patch) | |
tree | 307756735121d257d9e27b4b7a6209646fef5aff /Makefile | |
parent | Add IMAP parser (diff) | |
download | bubger-97279adb45f3716f3a4a0c121e40f60b762fffb5.tar.gz bubger-97279adb45f3716f3a4a0c121e40f60b762fffb5.zip |
Implement login and UIDVALIDITY check
Diffstat (limited to '')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cd57ae9 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CFLAGS += -std=c11 -Wall -Wextra -Wpedantic +LDLIBS = -ltls + +OBJS += archive.o +OBJS += imap.o + +bubger: ${OBJS} + ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ + +${OBJS}: imap.h + +clean: + rm -f bubger ${OBJS} |