blob: e4c56022240b9b96c69fb836050a2700ae0bd1da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: Makefile.inc,v 1.5 2014/01/16 20:31:43 christos Exp $
# net sources
.PATH: ${.CURDIR}/resolv
.if defined(__MINIX)
CPPFLAGS+=-DCOMPAT__RES -DUSE_SELECT -DNEED_PSELECT
.else
CPPFLAGS+=-DCOMPAT__RES -DUSE_POLL
.endif
SRCS+= h_errno.c herror.c res_comp.c res_data.c res_debug.c \
res_init.c res_mkquery.c res_query.c res_send.c \
res_state.c mtctxres.c
# For COMPAT__RES
SRCS+= res_compat.c
|