diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
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 |