Home | History | Annotate | Line # | Download | only in exec_elf32
      1  1.6  christos #	$NetBSD: Makefile,v 1.6 2020/10/19 19:33:02 christos Exp $
      2  1.1        ad 
      3  1.1        ad .include "../Makefile.inc"
      4  1.1        ad 
      5  1.1        ad KMOD=	exec_elf32
      6  1.1        ad 
      7  1.5  pgoyette CPPFLAGS+=	-DEXEC_ELF32
      8  1.2   jnemeth .if ${MACHINE_ARCH} != "arm" && \
      9  1.2   jnemeth     ${MACHINE_ARCH} != "armeb" && \
     10  1.2   jnemeth     ${MACHINE_ARCH} != "m68000" && \
     11  1.2   jnemeth     ${MACHINE_ARCH} != "m68k" && \
     12  1.2   jnemeth     ${MACHINE_ARCH} != "powerpc" && \
     13  1.2   jnemeth     ${MACHINE_ARCH} != "powerpc64" && \
     14  1.3   tsutsui     ${MACHINE_ARCH} != "sh3eb" && \
     15  1.3   tsutsui     ${MACHINE_ARCH} != "sh3el" && \
     16  1.2   jnemeth     ${MACHINE_ARCH} != "sparc" && \
     17  1.2   jnemeth     ${MACHINE_ARCH} != "sparc64"
     18  1.2   jnemeth CPPFLAGS+=	-DPAX_ASLR
     19  1.2   jnemeth .endif
     20  1.1        ad 
     21  1.1        ad .PATH:	${S}/kern
     22  1.6  christos SRCS=	exec_elf32.c
     23  1.1        ad 
     24  1.4       rin WARNS=	3
     25  1.4       rin 
     26  1.1        ad .include <bsd.kmodule.mk>
     27