16 lines
355 B
Makefile
16 lines
355 B
Makefile
# $NetBSD: Makefile,v 1.5 2004/02/19 18:25:56 drochner Exp $
|
|
|
|
SUBDIR+= mmap stack_exec loan1
|
|
|
|
#
|
|
# Test for no-executable stack; applies only to architectures
|
|
# where CPU and kernel support it.
|
|
#
|
|
STACKNOX_ARCHS= alpha i386 powerpc sh5 sparc sparc64 x86_64
|
|
|
|
.if !empty(STACKNOX_ARCHS:M${MACHINE_ARCH})
|
|
SUBDIR+= stack_noexec
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|