xref: /minix/sys/netinet/Makefile (revision 83133719)
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	ip_icmp.h \
11	ip_var.h \
12	tcp.h \
13	udp.h udp_var.h \
14
15
16.if !defined(__MINIX)
17# ipfilter headers
18# XXX shouldn't be here
19.include <bsd.own.mk>
20
21INCS+=	ip_compat.h	# always needed by kdump(1)
22
23.if (${MKIPFILTER} != "no")
24INCS+=	ip_auth.h ip_fil.h ip_frag.h ip_htable.h ip_nat.h \
25	ip_lookup.h ip_pool.h ip_proxy.h ip_scan.h ip_state.h ip_sync.h \
26	ipf_rb.h ipl.h
27.endif
28.endif # !defined(__MINIX)
29
30.include <bsd.kinc.mk>
31
32.if !defined(__MINIX)
33.PATH: ${NETBSDSRCDIR}/sys/external/bsd/ipf/netinet
34.endif # !defined(__MINIX)
35