diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 2000-09-14 18:52:48 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 2000-09-14 18:52:48 +0000 |
| commit | d9f61e83b6be0e04b4421967b30948e68b5eee46 (patch) | |
| tree | bf35b42876c13f94c7443a4b253af44c68e8e6ec | |
| parent | 1d95078aafa926305b3f530bc46160bccc36bd59 (diff) | |
Notes
| -rw-r--r-- | usr.bin/kdump/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 6baf6966d4f8..ddafcc007ce7 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -7,7 +7,11 @@ SRCS= kdump.c ioctl.c subr.c .PATH: ${.CURDIR}/../ktrace CLEANFILES+=ioctl.c -ioctl.c: - sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ioctl.c +.if make(depend) +ioctl.c: .PHONY +.else +ioctl.c: mkioctls +.endif + sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET} .include <bsd.prog.mk> |
