freebsd-dev/libexec/dma/dmagent/Makefile
Glen Barber ea580d0b45 Revert r301137 and r301163, and implement a correct fix
for the CONFS issue with dma.conf and ppp.conf.

Thank you very much to Bryan Drewery for looking into the
problem and providing this fix.

Pointyhat:	gjb
Sponsored by:	The FreeBSD Foundation
2016-06-01 20:44:28 +00:00

42 lines
568 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
LIBADD= ssl crypto
PROG= dma
SRCS= aliases_parse.y \
aliases_scan.l \
base64.c \
conf.c \
crypto.c \
dma.c \
dns.c \
local.c \
mail.c \
net.c \
spool.c \
util.c
MAN8= dma.8
CONFS= dma.conf
CONFSDIR= ${CONFDIR}/dma
YFLAGS+= -i
CLEANFILES= aliases_parse.i
FILES= mailer.conf
FILESDIR= ${SHAREDIR}/examples/dma
.if ${MK_SENDMAIL} == no
CONFGROUPS= CONFS MAILER
MAILERDIR= /etc/mail
MAILER= mailer.conf
.endif
BINMODE= 2555
.include <bsd.compiler.mk>
.if ${COMPILER_TYPE} == gcc
WARNS= 5
.endif
.include <bsd.prog.mk>