blob: 05d13b002f5fffc963d034938480ff7ddd6dbe3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile,v 1.3 2019/02/17 04:05:49 rin Exp $
.include "../Makefile.inc"
KMOD= exec_elf64
CPPFLAGS+= -DEXEC_ELF64 -DCOREDUMP
.if ${MACHINE_ARCH} != "powerpc64" && \
${MACHINE_ARCH} != "sparc64"
CPPFLAGS+= -DPAX_ASLR
.endif
.PATH: ${S}/kern
SRCS= exec_elf64.c core_elf64.c
WARNS= 3
.include <bsd.kmodule.mk>
|