blob: ae88cc7c0121170ae182442aeb82d2e5130787f8 (
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
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.17 2006/05/11 23:16:30 mrg Exp $
.include <bsd.own.mk>
PROG= named
MAN= named.8 lwresd.8 named.conf.5
BINDIR= /usr/sbin
LINKS= ${BINDIR}/named ${BINDIR}/lwresd
.include "${.CURDIR}/../Makefile.inc"
DIST=${IDIST}/bin/named
CPPFLAGS+=-I${DIST}/include -I${DIST}/unix/include
.if ${HAVE_GCC} == 4
.for f in client
COPTS.${f}.c+= -fno-strict-aliasing
.endfor
.endif
.PATH: ${DIST}/unix ${DIST}
SRCS_UNIX= os.c
SRCS= aclconf.c builtin.c client.c config.c control.c controlconf.c \
interfacemgr.c listenlist.c log.c logconf.c \
lwaddr.c lwdclient.c lwderror.c \
lwdgabn.c lwdgnba.c lwdgrbn.c lwdnoop.c lwresd.c lwsearch.c \
main.c notify.c query.c server.c sortlist.c tkeyconf.c tsigconf.c \
update.c xfrout.c zoneconf.c ${SRCS_UNIX}
.include <bsd.prog.mk>
|