ed7cf099c6
since it could potentially depend on any ${DESTDIR}/usr/include preprocessor file. This fixes the broken -DNOCLEAN world build I experienced yesterday.
14 lines
287 B
Makefile
14 lines
287 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= kdump
|
|
CFLAGS+=-I${.CURDIR}/../ktrace -I${.CURDIR}/../..
|
|
SRCS= kdump.c ioctl.c subr.c
|
|
.PATH: ${.CURDIR}/../ktrace
|
|
CLEANFILES+=ioctl.c
|
|
|
|
ioctl.c: .PHONY
|
|
sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ioctl.c
|
|
|
|
.include <bsd.prog.mk>
|