1c9b56c830
headers and LKM. Add MKPF; if set to no, don't build and install the pf(4) programs, headers, LKM and spamd. Both options default to yes, so nothing changed in the default build. Reviewed by lukem.
26 lines
750 B
Makefile
26 lines
750 B
Makefile
# $NetBSD: Makefile,v 1.11 2005/02/22 14:40:01 peter Exp $
|
|
|
|
INCSDIR= /usr/include/netinet
|
|
|
|
INCS= icmp6.h icmp_var.h if_atm.h if_ether.h if_inarp.h igmp.h \
|
|
igmp_var.h in.h in_gif.h in_pcb.h in_pcb_hdr.h in_systm.h \
|
|
in_var.h ip.h ip6.h ip_ecn.h ip_encap.h ip_gre.h \
|
|
ip_icmp.h ip_mroute.h ip_var.h pim.h pim_var.h \
|
|
tcp.h tcp_debug.h tcp_fsm.h tcp_seq.h tcp_timer.h tcp_var.h \
|
|
tcpip.h udp.h udp_var.h
|
|
|
|
# ipfilter headers
|
|
# XXX shouldn't be here
|
|
.include <bsd.own.mk>
|
|
|
|
INCS+= ip_compat.h # always needed by kdump(1)
|
|
|
|
.if (${MKIPFILTER} != "no")
|
|
INCS+= ip_auth.h ip_fil.h ip_frag.h ip_htable.h ip_nat.h \
|
|
ip_lookup.h ip_pool.h ip_proxy.h ip_scan.h ip_state.h ip_sync.h
|
|
.endif
|
|
|
|
.include <bsd.kinc.mk>
|
|
|
|
.PATH: ${NETBSDSRCDIR}/sys/dist/ipf/netinet
|