]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libunbound/Makefile
Fix multiple vulnerabilities in unbound.
[FreeBSD/FreeBSD.git] / lib / libunbound / Makefile
1 # $FreeBSD$
2
3 PACKAGE=lib${LIB}
4 # Vendor sources and generated files
5 LDNSDIR= ${SRCTOP}/contrib/ldns
6 UNBOUNDDIR= ${SRCTOP}/contrib/unbound
7
8 # Hold my beer and watch this
9 .PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/cachedb ${UNBOUNDDIR}/dns64 ${UNBOUNDDIR}/iterator ${UNBOUNDDIR}/sldns ${UNBOUNDDIR}/libunbound ${UNBOUNDDIR}/services ${UNBOUNDDIR}/services/cache ${UNBOUNDDIR}/util ${UNBOUNDDIR}/util/data ${UNBOUNDDIR}/respip ${UNBOUNDDIR}/util/storage ${UNBOUNDDIR}/validator 
10
11 LIB=    unbound
12 PRIVATELIB=
13 PACKAGE=        unbound
14
15 CFLAGS+= -I${UNBOUNDDIR} -I${LDNSDIR} -I${.OBJDIR}
16 CFLAGS+= -I${SRCTOP}/usr.sbin/unbound
17
18 SRCS=   alloc.c as112.c authzone.c autotrust.c cachedb.c config_file.c \
19         configlexer.l configparser.y context.c dname.c dns.c dns64.c \
20         dnstree.c edns.c fptr_wlist.c infra.c iter_delegpt.c iter_donotq.c \
21         iter_fwd.c iter_hints.c iter_priv.c iter_resptype.c iter_scrub.c \
22         iter_utils.c iterator.c keyraw.c libunbound.c libworker.c \
23         listen_dnsport.c localzone.c locks.c log.c lookup3.c lruhash.c \
24         mesh.c mini_event.c modstack.c module.c msgencode.c msgparse.c \
25         msgreply.c net_help.c netevent.c outbound_list.c outside_network.c \
26         packed_rrset.c parse.c parseutil.c random.c rbtree.c redis.c \
27         regional.c respip.c rpz.c rrdef.c rrset.c rtt.c sbuffer.c slabhash.c \
28         str2wire.c tcp_conn_limit.c timehist.c tube.c ub_event_pluggable.c \
29         val_anchor.c val_kcache.c val_kentry.c val_neg.c val_nsec.c \
30         val_nsec3.c val_secalgo.c val_sigcrypt.c val_utils.c validator.c \
31         view.c winsock_event.c wire2str.c
32
33 WARNS?= 2
34 NO_WTHREAD_SAFETY= true
35
36 LIBADD= ssl crypto pthread
37
38 # Misnamed file in upstream source
39 configlexer.l: configlexer.lex
40         ${CP} ${.ALLSRC} ${.TARGET}
41 CLEANFILES+= configlexer.l
42
43 # Symbol prefix for lex and yacc
44 LFLAGS= -Pub_c_
45 YFLAGS= -pub_c_ -d
46
47 .include <bsd.lib.mk>