20 lines
428 B
Makefile
20 lines
428 B
Makefile
# $NetBSD: Makefile,v 1.10 2011/07/14 11:08:44 jruoho Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if !empty(SUPPORTED_CC:Mgcc)
|
|
SUBDIR+= stack_exec
|
|
.endif
|
|
|
|
#
|
|
# 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(SUPPORTED_CC:Mgcc) && !empty(STACKNOX_ARCHS:M${MACHINE_ARCH})
|
|
SUBDIR+= stack_noexec
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|