mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 06:45:34 -05:00
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)
17 lines
304 B
Makefile
17 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>
|