blob: 08950cdf14ff16e0206a988f51dd2c78e3355ef6 (
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
26
27
28
29
30
31
|
# $OpenBSD: Makefile,v 1.39 2015/10/09 14:37:38 gilles Exp $
.PATH: ${.CURDIR}/..
PROG= smtpctl
BINOWN= root
BINGRP= _smtpq
BINMODE?=2555
BINDIR= /usr/sbin
MAN= smtpctl.8
MLINKS= smtpctl.8 mailq.8
CFLAGS+= -fstack-protector-all
CFLAGS+= -I${.CURDIR}/..
CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -DNO_IO
SRCS= enqueue.c parser.c log.c envelope.c crypto.c
SRCS+= queue_backend.c queue_fs.c
SRCS+= smtpctl.c util.c
SRCS+= compress_backend.c compress_gzip.c
SRCS+= to.c expand.c tree.c dict.c
LDADD+= -lutil -lz -lcrypto
DPADD+= ${LIBUTIL} ${LIBZ} ${LIBCRYPTO}
.include <bsd.prog.mk>
|