Makefile
author Peter H. Ezetta <peterezetta@porch.com>
Tue, 05 Jan 2021 23:48:34 -0800
changeset 44 cd0efa84de3f
parent 0 9e2cb1ed20b1
permissions -rw-r--r--
Fixing the path for the documented default for -k

PROG=		pop3d
MAN=		pop3d.8
CFLAGS+=	-Wall -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+=	-Wmissing-declarations -Wshadow -Wpointer-arith
CFLAGS+=	-Wcast-qual -Wsign-compare
CFLAGS+=	-DIO_SSL
DEBUG=		-g
SRCS=		pop3d.c pop3e.c session.c maildrop.c maildir.c mbox.c util.c
SRCS+=		imsgev.c iobuf.c ioev.c
SRCS+=		ssl.c ssl_privsep.c
LDADD+=		-levent -lssl -lcrypto -lutil
DPADD=		${LIBEVENT} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL}

.include <bsd.prog.mk>