summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/setjmp-fpu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libc/setjmp-fpu/Makefile')
-rw-r--r--src/regress/lib/libc/setjmp-fpu/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/regress/lib/libc/setjmp-fpu/Makefile b/src/regress/lib/libc/setjmp-fpu/Makefile
index 33d0f7e88a..7b9fae5f5f 100644
--- a/src/regress/lib/libc/setjmp-fpu/Makefile
+++ b/src/regress/lib/libc/setjmp-fpu/Makefile
@@ -1,8 +1,14 @@
1# $OpenBSD: Makefile,v 1.2 2013/12/29 05:46:43 martynas Exp $ 1# $OpenBSD: Makefile,v 1.3 2020/01/13 14:58:38 bluhm Exp $
2 2
3PROG= setjmp-fpu 3PROGS= _setjmp setjmp sigsetjmp
4SRCS= _setjmp.c main.c setjmp.c sigsetjmp.c
5 4
6LDADD= -lm 5LDADD= -lm
7 6
7.for p in ${PROGS}
8REGRESS_TARGETS += run-$p
9run-$p: $p
10 @echo '======== $@ ========'
11 ./$p
12.endfor
13
8.include <bsd.regress.mk> 14.include <bsd.regress.mk>