]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libldns/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libldns / Makefile
1 # $FreeBSD$
2
3 # Vendor sources and generated files
4 LDNSDIR = ${.CURDIR}/../../contrib/ldns
5
6 .PATH: ${LDNSDIR} ${LDNSDIR}/compat
7
8 LIB=    ldns
9 PRIVATELIB= true
10
11 CFLAGS+= -I${LDNSDIR}
12
13 SRCS=   buffer.c dane.c dname.c dnssec.c dnssec_sign.c dnssec_verify.c \
14         dnssec_zone.c duration.c error.c higher.c host2str.c host2wire.c \
15         keys.c net.c packet.c parse.c rbtree.c rdata.c resolver.c rr.c \
16         rr_functions.c sha1.c sha2.c str2host.c tsig.c update.c util.c \
17         wire2host.c zone.c
18
19 SRCS+=  b32_ntop.c b32_pton.c b64_ntop.c b64_pton.c
20
21 DPADD+= ${LIBCRYPTO}
22 LDADD+= -lcrypto
23
24 WARNS ?= 3
25
26 .include <bsd.lib.mk>