xref: /freebsd/usr.bin/kdump/Makefile (revision c4f6a2a9e1b1879b618c436ab4f56ff75c73a0f5)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
3
4.PATH: ${.CURDIR}/../ktrace
5
6PROG=		kdump
7SRCS=		kdump.c ioctl.c subr.c
8CFLAGS+=	-I${.CURDIR}/../ktrace -I${.CURDIR}/../..
9
10CLEANFILES=	ioctl.c
11
12ioctl.c: mkioctls
13	sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET}
14
15.include <bsd.prog.mk>
16