1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

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

Approved by:	sef
This commit is contained in:
Jordan K. Hubbard 2000-09-14 06:20:19 +00:00
parent 38d6ecd20c
commit 6b61687292
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65829
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>