blob: 592fde59cbb51a54850b8a53d2bf4b811ca28dc4 (
plain)
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
|
# $NetBSD: Makefile,v 1.5 2021/02/19 16:42:24 christos Exp $
LIB=ns
#USE_SHLIBDIR= yes
.include <bsd.own.mk>
.include "${.CURDIR}/../Makefile.inc"
DIST= ${IDIST}/lib/ns
.PATH.c: ${DIST}
CPPFLAGS+= -I${BIND_SRCDIR}/include/ns -I${DIST}
CPPFLAGS+= -DNAMED_PLUGINDIR=\"/usr/libexec/named\"
CWARNFLAGS.clang+= -Wno-tautological-constant-out-of-range-compare
#.for f in lookup byaddr request sdb validator
#COPTS.${f}.c+= -Wno-pointer-sign -fno-strict-aliasing
#.endfor
SRCS= client.c hooks.c interfacemgr.c lib.c listenlist.c \
log.c notify.c query.c server.c sortlist.c stats.c \
update.c version.c xfrout.c pfilter.c
.include <bsd.lib.mk>
|