freebsd-skq/bin/df/Makefile
Kris Kennaway e78527c437 GC some dead code relating to running df on unmounted block devices,
and remove the setgid operator bit from the installed binary: if you want
to view free disk space on an unmounted device, you should have read
permissions to access it.

Reviewed by:	phk
2001-05-08 06:58:25 +00:00

15 lines
203 B
Makefile

# @(#)Makefile 8.3 (Berkeley) 5/8/95
# $FreeBSD$
PROG= df
SRCS= df.c vfslist.c
MOUNT= ${.CURDIR}/../../sbin/mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
DPADD= ${LIBM}
LDADD= -lm
.include <bsd.prog.mk>