From 819dbfe373eeb8d0c4961fa136119525067ba024 Mon Sep 17 00:00:00 2001 From: des Date: Sun, 22 Sep 2013 20:30:55 +0000 Subject: Build and install drill(1). Approved by: re (blanket) --- usr.bin/Makefile | 1 + usr.bin/drill/Makefile | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 usr.bin/drill/Makefile (limited to 'usr.bin') diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 65187c5..6852c7a 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -265,6 +265,7 @@ SUBDIR+= compile_et .endif .if ${MK_LDNS_UTILS} != "no" +SUBDIR+= drill SUBDIR+= host .endif diff --git a/usr.bin/drill/Makefile b/usr.bin/drill/Makefile new file mode 100644 index 0000000..a963bfc --- /dev/null +++ b/usr.bin/drill/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +# Vendor sources and generated files +LDNSDIR= ${.CURDIR}/../../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 + +DPADD+= ${LIBLDNS} ${LIBCRYPTO} +LDADD+= -lldns -lcrypto +USEPRIVATELIB= ldns + +.include -- cgit v1.1