freebsd-dev/usr.bin/kdump/Makefile

18 lines
338 B
Makefile
Raw Normal View History

1994-05-27 12:33:43 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
1994-05-27 12:33:43 +00:00
PROG= kdump
1994-11-21 00:54:28 +00:00
CFLAGS+=-I${.CURDIR}/../ktrace -I${.CURDIR}/../..
1994-05-27 12:33:43 +00:00
SRCS= kdump.c ioctl.c subr.c
.PATH: ${.CURDIR}/../ktrace
CLEANFILES+=ioctl.c
.if make(depend)
ioctl.c: .PHONY
.else
ioctl.c: mkioctls
.endif
sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET}
1994-05-27 12:33:43 +00:00
.include <bsd.prog.mk>