summaryrefslogtreecommitdiff
path: root/sys/modules/exec_elf64/Makefile
blob: 5a291397b14285d1b14b7f917b4a6f49c07846b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#	$NetBSD: Makefile,v 1.2 2009/09/17 23:07:12 jnemeth 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

.include <bsd.kmodule.mk>