summaryrefslogtreecommitdiff
path: root/external/bsd/bind/lib/libisc/Makefile
blob: 52fd34293285de48beb04931ee0f0791b68c917d (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
32
33
34
35
36
37
38
39
40
#	$NetBSD: Makefile,v 1.2 2009/10/25 00:18:40 christos Exp $

LIB=isc

.include <bsd.own.mk>

.include "${.CURDIR}/../Makefile.inc"

DIST=	${IDIST}/lib/isc
.include "${DIST}/api"

.if ${NAMED_USE_PTHREADS} == "yes"
.PATH.c:	${DIST}/unix ${DIST}/nls ${DIST}/pthreads ${DIST}
.else
.PATH.c:	${DIST}/unix ${DIST}/nls ${DIST}/nothreads ${DIST}
.endif

UNIX_SRCS=	app.c backtrace.c dir.c entropy.c errno2result.c file.c \
		fsaccess.c interfaceiter.c keyboard.c net.c os.c resource.c \
		socket.c stdio.c stdtime.c strerror.c syslog.c time.c \
		backtrace-emptytbl.c
NLS_SRCS=	msgcat.c
PTHREAD_SRCS=	condition.c mutex.c thread.c

SRCS=		assertions.c base32.c base64.c bitstring.c buffer.c \
		bufferlist.c commandline.c error.c event.c \
		hash.c heap.c hex.c hmacmd5.c hmacsha.c httpd.c inet_aton.c \
		iterated_hash.c lex.c lfsr.c lib.c log.c md5.c mem.c \
		mutexblock.c netaddr.c netscope.c ondestroy.c parseint.c \
		portset.c quota.c radix.c random.c ratelimiter.c refcount.c \
		region.c result.c rwlock.c serial.c sha1.c sha2.c sockaddr.c \
		stats.c string.c strtoul.c symtab.c task.c taskpool.c timer.c \
		version.c ${UNIX_SRCS} ${NLS_SRCS} ${PTHREAD_SRCS}

.if (${USE_INET6} == "no")
CPPFLAGS.net.c=	-Wno-error
SRCS+=		ipv6.c
.endif

.include <bsd.lib.mk>