blob: 4d25c8ee59c1df2d02398fdc6bb8463961a34389 (
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.18 2010/05/31 23:38:56 jacekm Exp $
PROG= smtpd
SRCS= aliases.c authenticate.c client.c \
config.c control.c dns.c expand.c forward.c \
lka.c log.c map.c map_backend.c map_parser.c mda.c \
mfa.c mta.c parse.y queue.c queue_backend.c ruleset.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>
|