blob: 12a33c88b4f1810fee32138094b260a8609da9a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.2 2021/09/01 06:12:50 christos Exp $
WARNS=6
.include <bsd.own.mk>
TESTSDIR=${TESTSBASE}/usr.sbin/inetd
TESTS_C += t_inetd
#inetd service, supports dgram and stream via args
MKMAN = no
PROGS += test_server
BINDIR=${TESTSDIR}
#Other files that should be copied to /usr/tests
FILESDIR=${TESTSDIR}
FILES=test_server inetd_ratelimit.conf
.include <bsd.test.mk>
|