xref: /minix/sys/netinet/Makefile (revision 84d9c625)
1#	$NetBSD: Makefile,v 1.25 2012/09/15 17:41:59 plunky Exp $
2
3INCSDIR= /usr/include/netinet
4
5INCS=	\
6	in.h \
7	in_systm.h \
8	\
9	ip.h \
10	tcp.h \
11	\
12
13
14.if !defined(__MINIX)
15# ipfilter headers
16# XXX shouldn't be here
17.include <bsd.own.mk>
18
19INCS+=	ip_compat.h	# always needed by kdump(1)
20
21.if (${MKIPFILTER} != "no")
22INCS+=	ip_auth.h ip_fil.h ip_frag.h ip_htable.h ip_nat.h \
23	ip_lookup.h ip_pool.h ip_proxy.h ip_scan.h ip_state.h ip_sync.h \
24	ipf_rb.h ipl.h
25.endif
26.endif # !defined(__MINIX)
27
28.include <bsd.kinc.mk>
29
30.if !defined(__MINIX)
31.PATH: ${NETBSDSRCDIR}/sys/external/bsd/ipf/netinet
32.endif # !defined(__MINIX)
33