xref: /openbsd-src/regress/misc/exceptions/threads/Makefile (revision 824adb5411e4389b29bae28eba5c2c2bbd147f34)
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