1255597Sdes# $FreeBSD: stable/10/lib/libunbound/Makefile 313601 2017-02-11 06:33:46Z ngie $
2255597Sdes
3255597Sdes# Vendor sources and generated files
4313601SngieLDNSDIR= ${SRCTOP}/contrib/ldns
5313601SngieUNBOUNDDIR= ${SRCTOP}/contrib/unbound
6255597Sdes
7255597Sdes# Hold my beer and watch this
8291767Sdes.PATH: ${UNBOUNDDIR} ${UNBOUNDDIR}/compat ${UNBOUNDDIR}/dns64 ${UNBOUNDDIR}/iterator ${UNBOUNDDIR}/sldns ${UNBOUNDDIR}/libunbound ${UNBOUNDDIR}/services ${UNBOUNDDIR}/services/cache ${UNBOUNDDIR}/util ${UNBOUNDDIR}/util/data ${UNBOUNDDIR}/util/storage ${UNBOUNDDIR}/validator 
9255597Sdes
10255597SdesLIB=	unbound
11255597SdesPRIVATELIB=
12255597Sdes
13285206SdesCFLAGS= -I${UNBOUNDDIR} -I${LDNSDIR} -I${.OBJDIR}
14255597Sdes
15295691SdesSRCS=	alloc.c as112.c autotrust.c config_file.c configlexer.l configparser.y \
16285206Sdes	context.c dname.c dns.c dns64.c dnstree.c fptr_wlist.c infra.c \
17255597Sdes	iter_delegpt.c iter_donotq.c iter_fwd.c iter_hints.c iter_priv.c \
18269257Sdes	iter_resptype.c iter_scrub.c iter_utils.c iterator.c keyraw.c \
19269257Sdes	libunbound.c libworker.c listen_dnsport.c localzone.c locks.c log.c \
20269257Sdes	lookup3.c lruhash.c mesh.c mini_event.c modstack.c module.c \
21269257Sdes	msgencode.c msgparse.c msgreply.c net_help.c netevent.c \
22269257Sdes	outbound_list.c outside_network.c packed_rrset.c parse.c \
23291767Sdes	parseutil.c random.c rbtree.c reallocarray.c regional.c rrdef.c \
24291767Sdes	rrset.c rtt.c sbuffer.c slabhash.c str2wire.c timehist.c tube.c \
25291767Sdes	val_anchor.c val_kcache.c val_kentry.c val_neg.c val_nsec.c \
26291767Sdes	val_nsec3.c val_secalgo.c val_sigcrypt.c val_utils.c validator.c \
27269257Sdes	winsock_event.c wire2str.c
28255597Sdes
29255597SdesWARNS?=	3
30255597Sdes
31255597SdesDPADD+=	${LIBSSL} ${LIBCRYPTO} ${LIBPTHREAD}
32255597SdesLDADD+=	-lssl -lcrypto -lpthread
33255597Sdes
34269257Sdes# Misnamed file in upstream source
35269257Sdesconfiglexer.l: configlexer.lex
36269257Sdes	cp -p ${.ALLSRC} ${.TARGET}
37269257SdesCLEANFILES+= configlexer.l
38269257Sdes
39269257Sdes# Symbol prefix for lex and yacc
40269257SdesLFLAGS= -Pub_c_
41269257SdesYFLAGS= -pub_c_ -d
42269257Sdes
43255597Sdes.include <bsd.lib.mk>
44