16 lines
346 B
Makefile
16 lines
346 B
Makefile
# $NetBSD: Makefile,v 1.6 2007/04/08 09:35:51 scw 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 sparc sparc64 x86_64
|
|
|
|
.if !empty(STACKNOX_ARCHS:M${MACHINE_ARCH})
|
|
SUBDIR+= stack_noexec
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|