Makefile revision 307729
1# $FreeBSD: stable/11/usr.sbin/unbound/daemon/Makefile 307729 2016-10-21 14:28:35Z des $
2
3# Vendor sources and generated files
4LDNSDIR= ${.CURDIR}/../../../contrib/ldns
5UNBOUNDDIR= ${.CURDIR}/../../../contrib/unbound
6
7.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/daemon ${UNBOUNDDIR}/util ${UNBOUNDDIR}/doc
8
9PROG=	unbound
10SRCS=	acl_list.c cachedump.c daemon.c remote.c stats.c ub_event.c \
11	unbound.c worker.c
12CFLAGS+=	-I${UNBOUNDDIR} -I${LDNSDIR}
13LIBADD=	unbound util ssl crypto pthread
14MAN=	unbound.8 unbound.conf.5
15
16.include <bsd.prog.mk>
17