blob: 222799b4bdd73c2fa3ea48fc98f1b93f93fc7a3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.6 2020/10/19 19:33:02 christos Exp $
.include "../Makefile.inc"
KMOD= exec_elf32
CPPFLAGS+= -DEXEC_ELF32
.if ${MACHINE_ARCH} != "arm" && \
${MACHINE_ARCH} != "armeb" && \
${MACHINE_ARCH} != "m68000" && \
${MACHINE_ARCH} != "m68k" && \
${MACHINE_ARCH} != "powerpc" && \
${MACHINE_ARCH} != "powerpc64" && \
${MACHINE_ARCH} != "sh3eb" && \
${MACHINE_ARCH} != "sh3el" && \
${MACHINE_ARCH} != "sparc" && \
${MACHINE_ARCH} != "sparc64"
CPPFLAGS+= -DPAX_ASLR
.endif
.PATH: ${S}/kern
SRCS= exec_elf32.c
WARNS= 3
.include <bsd.kmodule.mk>
|