Home | History | Annotate | Line # | Download | only in kdump
Makefile revision 1.2
      1 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      2 
      3 PROG=	kdump
      4 CFLAGS+=-I${.CURDIR}/../ktrace
      5 SRCS=	kdump.c ioctl.c subr.c
      6 .PATH:	${.CURDIR}/../ktrace
      7 CLEANFILES+=ioctl.c
      8 
      9 ioctl.c: mkioctls
     10 	/bin/sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include/sys/ioctl.h \
     11 	    ${DESTDIR}/usr/include/sys/ioctl_compat.h > ioctl.c
     12 
     13 .include <bsd.prog.mk>
     14