diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-09-03 15:28:50 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-09-03 15:28:50 +0000 |
commit | f594ac03ac5a61c2e8dae965cb251fb55bdd36a4 (patch) | |
tree | 7a81dc6e7bc820b3c5327987116d918dcd1b3748 /regress | |
parent | bb8c89a58dc3acbdac0eca9e42a49582b76fdde1 (diff) |
those targets are all phony
Diffstat (limited to 'regress')
-rw-r--r-- | regress/sys/kern/noexec/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/regress/sys/kern/noexec/Makefile b/regress/sys/kern/noexec/Makefile index cdaa36cc743..8fbf9f0e3ce 100644 --- a/regress/sys/kern/noexec/Makefile +++ b/regress/sys/kern/noexec/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2002/09/02 20:01:44 avsm Exp $ +# $OpenBSD: Makefile,v 1.3 2002/09/03 15:28:49 mickey Exp $ .if ${MACHINE} == "sparc64" || ${MACHINE} == "sparc" || \ ${MACHINE} == "alpha" || ${MACHINE} == "macppc" || \ @@ -8,14 +8,15 @@ PROG= noexec CFLAGS+=-Wall -Werror LDSTATIC= ${STATIC} -REGRESS_TARGETS=nxtext-mprotect \ +REGRESS_TARGETS= nxtext-mprotect \ nxdata nxdata-mprotect \ nxbss nxbss-mprotect \ nxheap nxheap-mprotect \ nxstack nxstack-mprotect +.PHONY: ${REGRESS_TARGETS} nxtext-mprotect: ${PROG} - #@./${PROG} -T -p +# @./${PROG} -T -p nxdata: ${PROG} @./${PROG} -D |