summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/arc4random-fork/Makefile
blob: 05762e33ffc18aa135a8b02fbae4ae70d9d9ea5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#	$OpenBSD: Makefile,v 1.1 2014/06/18 08:24:00 matthew Exp $

PROG=	arc4random-fork

REGRESS_TARGETS=	\
	run		\
	run-buf		\
	run-prefork	\
	run-buf-prefork

run: ${PROG}
	./${PROG}

run-buf: ${PROG}
	./${PROG} -b

run-prefork: ${PROG}
	./${PROG} -p

run-buf-prefork: ${PROG}
	./${PROG} -bp

.PHONY: ${REGRESS_TARGETS}

.include <bsd.regress.mk>