a35f04fba2
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo over ${.CURDIR}/../foo for paths in Makefiles. Differential Revision: https://reviews.freebsd.org/D9932 Sponsored by: Netflix Silence on: arch@ (twice)
18 lines
304 B
Makefile
18 lines
304 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}
|
|
NO_WERROR= true
|
|
MAN= drill.1
|
|
|
|
LIBADD= ldns crypto
|
|
|
|
.include <bsd.prog.mk>
|