From 1e24334b33092aa6303e7f3ae3957a0c7fc2240c Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 8 Apr 2020 19:08:57 -0400 Subject: Use a real IMAP parser --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3356cf7..caaa9ac 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,16 @@ LDLIBS = -lcrypto -ltls -include config.mk -notemap: +OBJS += imap.o +OBJS += notemap.o + +notemap: ${OBJS} + ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ + +${OBJS}: compat.h imap.h clean: - rm -f notemap + rm -f notemap ${OBJS} install: notemap notemap.1 install -d ${PREFIX}/bin ${MANDIR}/man1 -- cgit 1.4.1