7fa2f2a62f
As suggested in D27598. This also supports MK_WERROR.clang=no and MK_WERROR.gcc=no to support the existing NO_WERROR.<compiler> uses. Reviewed By: brooks Differential Revision: https://reviews.freebsd.org/D27601
18 lines
302 B
Makefile
18 lines
302 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}
|
|
MK_WERROR= no
|
|
MAN= drill.1
|
|
|
|
LIBADD= ldns crypto
|
|
|
|
.include <bsd.prog.mk>
|