1 # $NetBSD: Makefile,v 1.32 2016/01/23 21:22:49 christos 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 SRCS= kdump.c subr.c setemul.c siginfo.c 10 .PATH: ${NETBSDSRCDIR}/usr.bin/ktrace 11 CLEANFILES+=siginfo.c 12 13 .if (${MKDYNAMICROOT} == "no") 14 LDSTATIC?=-static 15 .endif 16 17 .include "Makefile.ioctl-c" 18 .include "Makefile.siginfo-c" 19 20 CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/ktrace -I${NETBSDSRCDIR}/sys -D_KERNTYPES 21 22 LDADD+=-lutil 23 DPADD+=${LIBUTIL} 24 25 .include <bsd.prog.mk> 26