Home | History | Annotate | Line # | Download | only in coredump
Makefile revision 1.3
      1 #	$NetBSD: Makefile,v 1.3 2010/03/22 02:00:33 mrg Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 KMOD=	coredump
      6 
      7 CPPFLAGS+=	-DCOREDUMP
      8 
      9 .PATH:	${S}/kern
     10 SRCS=	kern_core.c core_netbsd.c
     11 
     12 .PATH:	${S}/uvm
     13 SRCS+=	uvm_coredump.c
     14 
     15 .PATH:	${S}/arch/${MACHINE}/${MACHINE}
     16 .PATH:	${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH}
     17 .PATH:	${S}/arch/${MACHINE_CPU}/${MACHINE_CPU}
     18 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
     19 .PATH:	${S}/arch/x86/x86
     20 .endif
     21 .if ${MACHINE_ARCH} == "powerpc64"
     22 .PATH: ${S}/arch/powerpc/powerpc
     23 .endif
     24 SRCS+=	core_machdep.c
     25 
     26 .include <bsd.kmodule.mk>
     27