Makefile revision 356914
1# $FreeBSD: stable/11/usr.sbin/unbound/control/Makefile 356914 2020-01-20 13:46:09Z cy $
2
3# Vendor sources and generated files
4LDNSDIR= ${SRCTOP}/contrib/ldns
5UNBOUNDDIR= ${SRCTOP}/contrib/unbound
6
7.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/smallapp ${UNBOUNDDIR}/util ${UNBOUNDDIR}/doc
8
9PROG=	local-unbound-control
10SRCS=	ub_event.c unbound-control.c worker_cb.c
11CFLAGS+=	-I${UNBOUNDDIR} -I${LDNSDIR}
12CFLAGS+=	-I${.CURDIR:H} -I${.CURDIR}
13LIBADD=	unbound crypto ssl pthread
14MAN=	local-unbound-control.8
15
16.include <bsd.prog.mk>
17