summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd/Makefile
blob: 6cf4056bc28f7b68c162db3dca323ad765f45c01 (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.14 2009/11/08 23:15:03 gilles Exp $

PROG=		smtpd
SRCS=		aliases.c authenticate.c bounce.c buffer.c client.c	\
		config.c control.c dns.c expand.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>