6a71b7809e
config.h as a guide. In practice contributed software maintains a copy of config.h within its build directory tree containing its Makefile. usr.sbin/unbound is the home for its config.h. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D22983
18 lines
455 B
Makefile
18 lines
455 B
Makefile
# $FreeBSD$
|
|
|
|
# Vendor sources and generated files
|
|
LDNSDIR= ${SRCTOP}/contrib/ldns
|
|
UNBOUNDDIR= ${SRCTOP}/contrib/unbound
|
|
EXPATDIR= ${SRCTOP}/contrib/expat
|
|
|
|
.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/smallapp ${UNBOUNDDIR}/doc
|
|
|
|
PROG= local-unbound-anchor
|
|
SRCS= unbound-anchor.c
|
|
CFLAGS+= -I${UNBOUNDDIR} -I${LDNSDIR} -I${EXPATDIR}/lib
|
|
CFLAGS+= -I${.CURDIR:H} -I${.CURDIR}
|
|
LIBADD= unbound bsdxml ssl crypto pthread
|
|
MAN= local-unbound-anchor.8
|
|
|
|
.include <bsd.prog.mk>
|