c6db8143ed
Reduce overlinking
17 lines
435 B
Makefile
17 lines
435 B
Makefile
# $FreeBSD$
|
|
|
|
# Vendor sources and generated files
|
|
LDNSDIR= ${.CURDIR}/../../../contrib/ldns
|
|
UNBOUNDDIR= ${.CURDIR}/../../../contrib/unbound
|
|
EXPATDIR= ${.CURDIR}/../../../contrib/expat
|
|
|
|
.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/smallapp ${UNBOUNDDIR}/doc
|
|
|
|
PROG= unbound-anchor
|
|
SRCS= unbound-anchor.c
|
|
CFLAGS= -I${UNBOUNDDIR} -I${LDNSDIR} -I${EXPATDIR}/lib
|
|
LIBADD= unbound bsdxml ssl crypto pthread
|
|
MAN= unbound-anchor.8
|
|
|
|
.include <bsd.prog.mk>
|