aboutsummaryrefslogtreecommitdiff
path: root/lib/libldns/Makefile
blob: c0b30b0f36347b2ac6b046b201c95ebb3a50e106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# $FreeBSD$

# Vendor sources and generated files
LDNSDIR = ${.CURDIR}/../../contrib/ldns

.PATH: ${LDNSDIR}

LIB = ldns
INTERNALLIB = true

CFLAGS += -I${LDNSDIR}

SRCS +=	buffer.c
SRCS += dane.c
SRCS +=	dname.c
SRCS +=	dnssec.c
SRCS +=	dnssec_sign.c
SRCS +=	dnssec_verify.c
SRCS +=	dnssec_zone.c
SRCS +=	duration.c
SRCS +=	error.c
SRCS +=	higher.c
SRCS +=	host2str.c
SRCS +=	host2wire.c
SRCS +=	keys.c
SRCS +=	net.c
SRCS +=	packet.c
SRCS +=	parse.c
SRCS +=	rbtree.c
SRCS +=	rdata.c
SRCS +=	resolver.c
SRCS +=	rr.c
SRCS +=	rr_functions.c
SRCS +=	sha1.c
SRCS +=	sha2.c
SRCS +=	str2host.c
SRCS +=	tsig.c
SRCS +=	update.c
SRCS +=	util.c
SRCS +=	wire2host.c
SRCS +=	zone.c

WARNS ?= 3

.include <bsd.lib.mk>