mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-19 04:05:48 -04:00
32 lines
536 B
Makefile
32 lines
536 B
Makefile
# $NetBSD$
|
|
#
|
|
# Public Domain
|
|
#
|
|
|
|
RUMPTOP= ${.CURDIR}/../../../../sys/rump
|
|
|
|
LIB= npftest
|
|
LIBISPRIVATE= yes
|
|
|
|
SRCS+= npf_test_subr.c
|
|
SRCS+= npf_mbuf_subr.c
|
|
|
|
SRCS+= npf_nbuf_test.c
|
|
SRCS+= npf_bpf_test.c
|
|
SRCS+= npf_table_test.c
|
|
SRCS+= npf_state_test.c
|
|
SRCS+= npf_rule_test.c
|
|
SRCS+= npf_nat_test.c
|
|
|
|
SRCS+= npf_perf_test.c
|
|
|
|
CPPFLAGS+= -D_NPF_TESTING
|
|
CPPFLAGS+= -I${.CURDIR}/../../../../sys/net/npf
|
|
CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
|
|
|
|
WARNS= 5
|
|
|
|
.include "${RUMPTOP}/Makefile.rump"
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.klinks.mk>
|