diff options
author | 2002-09-03 15:28:49 +0000 | |
---|---|---|
committer | 2002-09-03 15:28:49 +0000 | |
commit | 0ee0a477634278c1110284f3f584e338cf04436d (patch) | |
tree | 1e29dde883c52d65706ccf65aa6fad466101e926 | |
parent | evp_test.o should not be included in libcrypto (it defines _main !!) (diff) | |
download | wireguard-openbsd-0ee0a477634278c1110284f3f584e338cf04436d.tar.xz wireguard-openbsd-0ee0a477634278c1110284f3f584e338cf04436d.zip |
those targets are all phony
-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 |