blob: 722725b4f19aa79607c9012698c1c70fe0395600 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $OpenBSD: Makefile,v 1.1 2021/02/20 19:05:28 otto Exp $
PROG= exceptions
SRCS= exceptions.cc
REGRESS_TARGETS=runs
runs: exceptions
for i in $$(jot 100); do exceptions; done
.include <bsd.regress.mk>
|