summaryrefslogtreecommitdiff
path: root/regress/sys/kern/kqueue/Makefile
blob: 7d7994bd6e63ad6ed9e6e9532ae6ebb9d9a05f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#	$OpenBSD: Makefile,v 1.5 2002/09/02 20:01:44 avsm Exp $

PROG=	kqueue-test
SRCS=	kqueue-pipe.c kqueue-fork.c main.c kqueue-process.c kqueue-random.c

kq-pipe: ${PROG}
	./${PROG} -p
kq-fork: ${PROG}
	./${PROG} -f
kq-process: ${PROG}
	./${PROG} -P
kq-random: ${PROG}
	./${PROG} -r

REGRESS_TARGETS=kq-pipe kq-fork kq-process kq-random
.PHONY: ${REGRESS_TARGETS}

.include <bsd.regress.mk>