]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.bin/drill/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.bin / drill / Makefile
1 # $FreeBSD$
2
3 # Vendor sources and generated files
4 LDNSDIR= ${.CURDIR}/../../contrib/ldns
5
6 .PATH: ${LDNSDIR}/drill
7
8 PROG=   drill
9 SRCS=   drill.c drill_util.c error.c root.c work.c \
10         chasetrace.c dnssec.c securetrace.c
11 CFLAGS+= -I${LDNSDIR}
12 NO_WERROR= true
13 MAN=    drill.1
14
15 DPADD+= ${LIBLDNS} ${LIBCRYPTO}
16 LDADD+= -lldns -lcrypto
17 USEPRIVATELIB= ldns
18
19 .include <bsd.prog.mk>