From 97279adb45f3716f3a4a0c121e40f60b762fffb5 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 9 Apr 2020 13:00:39 -0400 Subject: Implement login and UIDVALIDITY check --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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} -- cgit 1.4.1