summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/setjmp-fpu/Makefile
blob: e3dd2daa52bf61351919f6cb656785ab8e22f044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#	$OpenBSD: Makefile,v 1.5 2020/12/17 00:51:11 bluhm Exp $

PROGS=	fpu _setjmp setjmp sigsetjmp

LDADD=	-lm

REGRESS_TARGETS =	run-fpu
run-fpu: fpu
	# check fpu functions without setjmp/longjmp before testing the latter
	./fpu

.for p in ${PROGS:M*jmp}
REGRESS_TARGETS +=	run-$p
run-$p: $p
	./$p
.endfor

.include <bsd.regress.mk>