mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 06:42:51 +01:00
1740c2dbb6
This was marked deprecated in r329092, over two and a half years ago. This functionality is also buggy per PR 237368. PR: 237368 Reviewed by: brooks, cem, emaste, imp Differential Revision: https://reviews.freebsd.org/D27197
16 lines
203 B
Makefile
16 lines
203 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 5/8/95
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
MOUNT= ${SRCTOP}/sbin/mount
|
|
.PATH: ${MOUNT}
|
|
|
|
PROG= df
|
|
SRCS= df.c vfslist.c
|
|
|
|
CFLAGS+= -I${MOUNT}
|
|
|
|
LIBADD= xo util
|
|
|
|
.include <bsd.prog.mk>
|