1# $NetBSD: Makefile,v 1.10 2021/11/21 09:35:39 hannken Exp $
2
3WARNS?=6
4NOMAN=		# defined
5
6.include <bsd.own.mk>
7
8TESTSDIR=	${TESTSBASE}/kernel/kqueue
9
10TESTS_SUBDIRS=	read
11TESTS_SUBDIRS+=	write
12
13TESTS_C=	t_empty
14TESTS_C+=	t_ioctl
15TESTS_C+=	t_oneshot
16TESTS_C+=	t_proc1
17TESTS_C+=	t_proc2
18TESTS_C+=	t_proc3
19TESTS_C+=	t_proc4
20TESTS_C+=	t_scan
21TESTS_C+=	t_sig
22TESTS_C+=	t_timer
23TESTS_C+=	t_vnode
24
25LDADD.t_scan+=	-lpthread
26
27CPPFLAGS.t_timer.c+=	-I${.CURDIR}/../../lib/libc/gen
28
29.include <bsd.test.mk>
30