diff options
author | markm <markm@FreeBSD.org> | 2002-06-21 11:06:11 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-06-21 11:06:11 +0000 |
commit | cea30675defd757a79bac882e55df43bd13a2d91 (patch) | |
tree | 43f70cfa9b252c030ad6d48ae2e39f2880b447b3 /usr.bin/kdump | |
parent | 25b1090f3ab86dce1d7c085d81db4a50486af781 (diff) | |
download | FreeBSD-src-cea30675defd757a79bac882e55df43bd13a2d91.zip FreeBSD-src-cea30675defd757a79bac882e55df43bd13a2d91.tar.gz |
Better fix for style.
Suggested by: ru (but modified a bit by markm)
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 6f1ee2d..9faca1d 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -1,15 +1,15 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ -PROG= kdump -SRCS= kdump.c ioctl.c subr.c -CFLAGS+=-I${.CURDIR}/../ktrace -I${.CURDIR}/../.. +.PATH: ${.CURDIR}/../ktrace -CLEANFILES+=ioctl.c +PROG= kdump +SRCS= kdump.c ioctl.c subr.c +CFLAGS+= -I${.CURDIR}/../ktrace -I${.CURDIR}/../.. -.PATH: ${.CURDIR}/../ktrace +CLEANFILES= ioctl.c -ioctl.c: mkioctls +ioctl.c: mkioctls sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET} .include <bsd.prog.mk> |