Home | History | Annotate | Line # | Download | only in kdump
Makefile revision 1.28
      1 #	$NetBSD: Makefile,v 1.28 2007/05/28 12:06:27 tls Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      3 
      4 .include <bsd.own.mk>		# for MKDYNAMICROOT & NETBSDSRCDIR
      5 
      6 USE_FORT?= yes	# cryptographic software
      7 
      8 PROG=	kdump
      9 CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/ktrace -I${NETBSDSRCDIR}/sys
     10 SRCS=	kdump.c subr.c setemul.c siginfo.c
     11 .PATH:	${NETBSDSRCDIR}/usr.bin/ktrace
     12 CLEANFILES+=siginfo.c
     13 WARNS=3
     14 
     15 .if (${MKDYNAMICROOT} == "no")
     16 LDSTATIC?=-static
     17 .endif
     18 
     19 .include "Makefile.ioctl-c"
     20 .include "Makefile.siginfo-c"
     21 
     22 .include <bsd.prog.mk>
     23