b70d78d6e8
PR: 222902
16 lines
404 B
Makefile
16 lines
404 B
Makefile
# $FreeBSD$
|
|
|
|
# Vendor sources and generated files
|
|
LDNSDIR= ${SRCTOP}/contrib/ldns
|
|
UNBOUNDDIR= ${SRCTOP}/contrib/unbound
|
|
|
|
.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/smallapp ${UNBOUNDDIR}/util ${UNBOUNDDIR}/doc
|
|
|
|
PROG= local-unbound-control
|
|
SRCS= ub_event.c unbound-control.c worker_cb.c
|
|
CFLAGS+= -I${UNBOUNDDIR} -I${LDNSDIR}
|
|
LIBADD= unbound crypto ssl pthread
|
|
MAN= local-unbound-control.8
|
|
|
|
.include <bsd.prog.mk>
|