3d852e0ec8
Thanks to Paul Goyette for testing.
19 lines
308 B
Makefile
19 lines
308 B
Makefile
# $NetBSD: Makefile,v 1.5 2020/10/19 19:33:02 christos Exp $
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
KMOD= exec_elf64
|
|
|
|
CPPFLAGS+= -DEXEC_ELF64
|
|
.if ${MACHINE_ARCH} != "powerpc64" && \
|
|
${MACHINE_ARCH} != "sparc64"
|
|
CPPFLAGS+= -DPAX_ASLR
|
|
.endif
|
|
|
|
.PATH: ${S}/kern
|
|
SRCS= exec_elf64.c
|
|
|
|
WARNS= 3
|
|
|
|
.include <bsd.kmodule.mk>
|