Home | History | Annotate | Line # | Download | only in kdump
Makefile revision 1.9
      1 #	$NetBSD: Makefile,v 1.9 1997/08/01 04:37:36 mikel Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      3 
      4 PROG=	kdump
      5 CFLAGS+=-I${.CURDIR}/../ktrace
      6 SRCS=	kdump.c ioctl.c subr.c
      7 .PATH:	${.CURDIR}/../ktrace
      8 LDSTATIC=-static
      9 CLEANFILES+=ioctl.c
     10 
     11 ioctl.c: mkioctls ${DESTDIR}/usr/include/sys/ioctl.h ${DESTDIR}/usr/include/sys/ioctl_compat.h
     12 	/bin/sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include/sys/ioctl.h \
     13 	    ${DESTDIR}/usr/include/sys/ioctl_compat.h > ioctl.c
     14 
     15 .include <bsd.prog.mk>
     16