remove .PHONY to avoid gratuitous rebuild of ioctl.c each time.

Approved by:	sef
This commit is contained in:
jkh 2000-09-14 06:20:19 +00:00
parent 1619818359
commit 2a8c03de9e
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ SRCS= kdump.c ioctl.c subr.c
.PATH: ${.CURDIR}/../ktrace
CLEANFILES+=ioctl.c
ioctl.c: .PHONY
ioctl.c:
sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ioctl.c
.include <bsd.prog.mk>

View File

@ -28,7 +28,7 @@ syscalls.h: syscalls.master
/bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh syscalls.master \
${.CURDIR}/i386.conf
ioctl.c: .PHONY
ioctl.c:
sh ${.CURDIR}/../../usr.bin/kdump/mkioctls ${DESTDIR}/usr/include > ioctl.c
.include <bsd.prog.mk>