Fixed a typo in ${.CURDIR} spelling, fatal on systems

without the /sys symlink pointing to the current tree.
(Revision 1.2 made it non-fatal, but anyway.)

Apply style.Makefile(5).

Fixed ``make checkdpadd''.
This commit is contained in:
Ruslan Ermilov 2003-03-21 14:45:46 +00:00
parent c6885e2617
commit 09823ba540
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112462

View file

@ -1,19 +1,12 @@
# $FreeBSD$ # $FreeBSD$
.PATH: ${.CURDIR}/../../sys/kern
PROG= gstat PROG= gstat
NOMAN=
SRCS= gstat.c subr_sbuf.c SRCS= gstat.c subr_sbuf.c
.PATH: ${CURDIR}/../../sys/kern
WARNS?= 5 WARNS?= 5
DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBKVM} ${LIBBSDXML} ${LIBCURSES}
LDADD += -lgeom LDADD= -lgeom -ldevstat -lkvm -lbsdxml -lcurses
LDADD += -ldevstat
LDADD += -lkvm
LDADD += -lbsdxml
LDADD += -lcurses
NOMAN= sorry
.include <bsd.prog.mk> .include <bsd.prog.mk>