
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
31 lines
597 B
Makefile
31 lines
597 B
Makefile
# $NetBSD: Makefile,v 1.26 2015/02/10 19:11:52 rjs Exp $
|
|
|
|
INCSDIR= /usr/include/netinet
|
|
|
|
INCS= \
|
|
in.h \
|
|
in_systm.h \
|
|
ip.h \
|
|
ip_icmp.h ip_var.h \
|
|
tcp.h \
|
|
udp.h udp_var.h \
|
|
|
|
|
|
.if !defined(__MINIX)
|
|
# 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 \
|
|
ipf_rb.h ipl.h
|
|
.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
.include <bsd.kinc.mk>
|
|
|
|
.PATH: ${NETBSDSRCDIR}/sys/external/bsd/ipf/netinet
|