Home | History | Annotate | Line # | Download | only in exec_elf64
Makefile revision 1.3
      1 #	$NetBSD: Makefile,v 1.3 2019/02/17 04:05:49 rin Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 KMOD=	exec_elf64
      6 
      7 CPPFLAGS+=	-DEXEC_ELF64 -DCOREDUMP
      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 core_elf64.c
     15 
     16 WARNS=	3
     17 
     18 .include <bsd.kmodule.mk>
     19