xref: /openbsd-src/regress/misc/exceptions/threads/Makefile (revision 142fd3e3359fd805134b4048f2143781c3773800)
1#	$OpenBSD: Makefile,v 1.3 2021/10/06 12:43:14 bluhm Exp $
2
3PROG=	exceptions
4SRCS=	exceptions.cc
5LDADD=	-lpthread
6DPADD=	${LIBPTHREAD}
7
8REGRESS_TARGETS=runs
9
10runs: exceptions
11	for i in $$(jot 100); do ./exceptions; done
12
13.include <bsd.regress.mk>
14