Home | History | Annotate | Line # | Download | only in kdump
Makefile revision 1.12.2.2
      1 #	$NetBSD: Makefile,v 1.12.2.2 2000/10/19 17:58:24 he Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	kdump
      7 CPPFLAGS+=-I${.CURDIR}/../ktrace -I${.CURDIR}/../../sys
      8 SRCS=	kdump.c ioctl.c subr.c
      9 .PATH:	${.CURDIR}/../ktrace
     10 LDSTATIC?=-static
     11 CLEANFILES+=ioctl.c
     12 WFORMAT=1
     13 
     14 ioctl.c: mkioctls ${DESTDIR}/usr/include/sys/ioctl.h ${DESTDIR}/usr/include/sys/ioctl_compat.h
     15 	/bin/sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include/sys/ioctl.h \
     16 	    ${DESTDIR}/usr/include/sys/ioctl_compat.h > ioctl.c
     17 
     18 .include <bsd.prog.mk>
     19