summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--regress/sys/kern/nxstack-mprotect/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/regress/sys/kern/nxstack-mprotect/Makefile b/regress/sys/kern/nxstack-mprotect/Makefile
index 29f277470d5..ce55a4704a7 100644
--- a/regress/sys/kern/nxstack-mprotect/Makefile
+++ b/regress/sys/kern/nxstack-mprotect/Makefile
@@ -1,6 +1,15 @@
-# $OpenBSD: Makefile,v 1.1 2002/07/27 06:52:37 mickey Exp $
+# $OpenBSD: Makefile,v 1.2 2002/07/27 08:01:31 deraadt Exp $
+
+.if ${MACHINE} == "sparc64" || ${MACHINE} == "sparc" || \
+ ${MACHINE} == "alpha" || ${MACHINE} == "macppc" || \
+ ${MACHINE} == "mvmeppc" || ${MACHINE} == "i386" || \
+ ${MACHINE} == "hppa"
PROG= nxstack-mprotect
LDSTATIC= ${STATIC}
+.else
+REGRESSTARGETS= # this architecture has no test for this
+.endif
+
.include <bsd.regress.mk>