mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 02:10:45 -05:00
Merge commit 'cf3e3d5bd0a1fae39c74c7db5a4e8b10732d0766' Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D40226
17 lines
366 B
Makefile
17 lines
366 B
Makefile
# $FreeBSD$
|
|
|
|
# Vendor sources and generated files
|
|
LDNSDIR= ${SRCTOP}/contrib/ldns
|
|
|
|
.PATH: ${LDNSDIR}/drill
|
|
|
|
PROG= drill
|
|
SRCS= drill.c drill_util.c error.c root.c work.c \
|
|
chasetrace.c dnssec.c securetrace.c
|
|
CFLAGS+= -I${LDNSDIR} -I${LDNSDIR}/ldns
|
|
CFLAGS+= -DLDNS_TRUST_ANCHOR_FILE='"/etc/unbound/root.key"'
|
|
MAN= drill.1
|
|
|
|
LIBADD= ldns crypto
|
|
|
|
.include <bsd.prog.mk>
|