Home | History | Annotate | Line # | Download | only in exec_elf64
      1 #	$NetBSD: Makefile,v 1.5 2020/10/19 19:33:02 christos Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 KMOD=	exec_elf64
      6 
      7 CPPFLAGS+=	-DEXEC_ELF64
      8 .if ${MACHINE_ARCH} != "powerpc64" && \
      9     ${MACHINE_ARCH} != "sparc64"
     10 CPPFLAGS+=	-DPAX_ASLR
     11 .endif
     12 
     13 .PATH:	${S}/kern
     14 SRCS=	exec_elf64.c
     15 
     16 WARNS=	3
     17 
     18 .include <bsd.kmodule.mk>
     19