b2490f915f
breakage with ioctl.c. The .depend file should track dependencies just fine, and the worst we can have is to miss new ioctls. But I still think it's a good idea to have -DNOCLEAN build produce the same ioctl.c as it would without -DNOCLEAN. Prodded for a long time by: bde
14 lines
292 B
Makefile
14 lines
292 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: mkioctls
|
|
sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|