summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libc/sigreturn/Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/regress/lib/libc/sigreturn/Makefile b/src/regress/lib/libc/sigreturn/Makefile
index 3212ec4635..3e8e2c0b41 100644
--- a/src/regress/lib/libc/sigreturn/Makefile
+++ b/src/regress/lib/libc/sigreturn/Makefile
@@ -1,7 +1,18 @@
1# $OpenBSD: Makefile,v 1.2 2002/01/01 23:00:51 art Exp $ 1# $OpenBSD: Makefile,v 1.3 2002/01/03 19:17:24 marc Exp $
2 2
3PROG= sigret 3PROG= sigret
4 4
5DEBUG+= -ggdb 5DEBUG+= -ggdb
6 6
7REGRESSTARGETS+= sigret-normal sigret-indirect sigret-altstack
8
9sigret-normal:
10 ./${PROG}
11
12sigret-indirect: ${PROG}
13 ./${PROG} -i
14
15sigret-altstack: ${PROG}
16 ./${PROG} -a
17
7.include <bsd.regress.mk> 18.include <bsd.regress.mk>