blob: 9181c9e012ef1d0880e14e0b4ef14686213664a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.1 2022/11/17 08:45:35 ozaki-r Exp $
#
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/net/inpcb
.for name in inpcb_bind broadcast_bind
TESTS_SH+= t_${name}
TESTS_SH_SRC_t_${name}= ../net_common.sh t_${name}.sh
.endfor
PROGS= inpcb_bind
MAN.inpcb_bind= # empty
BINDIR.inpcb_bind= ${TESTSDIR}
PROGS+= broadcast_bind
MAN.broadcast_bind= # empty
BINDIR.broadcast_bind= ${TESTSDIR}
.include <bsd.test.mk>
|