diff options
author | ru <ru@FreeBSD.org> | 2002-07-23 09:15:45 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-07-23 09:15:45 +0000 |
commit | 1419e21345a70f2237a1608b56aaa25d89e8c496 (patch) | |
tree | c5bd4263d8fbed24c400afac81dfbb1d25a899ac | |
parent | 7faee76c835a1ef1b4a3d33151660f6d04c50552 (diff) | |
download | FreeBSD-src-1419e21345a70f2237a1608b56aaa25d89e8c496.zip FreeBSD-src-1419e21345a70f2237a1608b56aaa25d89e8c496.tar.gz |
Dependencies are delimited by space not tab.
-rw-r--r-- | usr.bin/kdump/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 9faca1d..060081c 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -1,7 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ -.PATH: ${.CURDIR}/../ktrace +.PATH: ${.CURDIR}/../ktrace PROG= kdump SRCS= kdump.c ioctl.c subr.c @@ -9,7 +9,7 @@ CFLAGS+= -I${.CURDIR}/../ktrace -I${.CURDIR}/../.. CLEANFILES= ioctl.c -ioctl.c: mkioctls +ioctl.c: mkioctls sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET} .include <bsd.prog.mk> |