--- b/usr.sbin/unbound/Makefile +++ b/usr.sbin/unbound/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -SUBDIR= daemon anchor checkconf control +SUBDIR= daemon anchor checkconf control host SUBDIR+= local-setup SUBDIR_PARALLEL= --- /dev/null +++ b/usr.sbin/unbound/host/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +# Vendor sources and generated files +LDNSDIR= ${.CURDIR}/../../../contrib/ldns +UNBOUNDDIR= ${.CURDIR}/../../../contrib/unbound + +.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/smallapp ${UNBOUNDDIR}/doc + +PROG= unbound-host +SRCS= unbound-host.c +CFLAGS+= -I${UNBOUNDDIR} -I${LDNSDIR} +LIBADD= unbound crypto ssl pthread +MAN= unbound-host.1 + +.include