summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd/Makefile
blob: 9a4b0fe1390bbd58ecc5be768fee15ce6f27c2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#	$OpenBSD: Makefile,v 1.13 2009/09/04 11:49:23 jacekm Exp $

PROG=		smtpd
SRCS=		aliases.c authenticate.c bounce.c buffer.c client.c	\
		config.c control.c dns.c forward.c imsg.c lka.c log.c	\
		map.c mda.c mfa.c mta.c parse.y queue.c queue_shared.c	\
		ruleset.c runner.c smtp.c smtp_session.c smtpd.c ssl.c	\
		ssl_privsep.c util.c

MAN=		smtpd.8 smtpd.conf.5
BINDIR=		/usr/sbin

LDADD+=		-levent -lutil -lssl -lcrypto -lm
DPADD+=		${LIBEVENT} ${LIBUTIL} ${LIBSSL} ${LIBCRYPTO} ${LIBM}
CFLAGS=		-g3 -ggdb -I${.CURDIR}/..
CFLAGS+=	-Wall -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+=	-Wmissing-declarations
CFLAGS+=	-Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+=	-Wsign-compare -Wbounded
#CFLAGS+=	-Werror # during development phase (breaks some archs)
YFLAGS=

.PATH: ${.CURDIR}/..

.include <bsd.prog.mk>