freebsd-dev/usr.bin/drill/Makefile
Alex Richardson 7fa2f2a62f Rename NO_WERROR -> MK_WERROR=no
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
2021-01-07 09:31:03 +00:00

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>