Home | History | Annotate | Line # | Download | only in coredump
Makefile revision 1.1.8.1
      1 #	$NetBSD: Makefile,v 1.1.8.1 2009/05/13 17:22:18 jym 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 SRCS+=	core_machdep.c
     22 
     23 .include <bsd.kmodule.mk>
     24