diff options
author | mharo <mharo@FreeBSD.org> | 1999-12-15 03:44:09 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-12-15 03:44:09 +0000 |
commit | a67c7a1db7086ddd78f652b334cd7aa4685f8cb7 (patch) | |
tree | 6dbd0f72c5b94da43e862fa1edcd5f2237d83120 /bin/df/Makefile | |
parent | 61075c3a9d51733f793eca73ba53662a45fe627b (diff) | |
download | FreeBSD-src-a67c7a1db7086ddd78f652b334cd7aa4685f8cb7.zip FreeBSD-src-a67c7a1db7086ddd78f652b334cd7aa4685f8cb7.tar.gz |
add human readable output (-h and -H)
Obtained from: parts of human readable code from OpenBSD
Reviewed by: obrien
add POSIX, byte and megabyte block size ouput flags
PR: 13579 (POSIX flag)
Submitted by: Mike Meyer <mwm@phone.net>
Diffstat (limited to 'bin/df/Makefile')
-rw-r--r-- | bin/df/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/df/Makefile b/bin/df/Makefile index 83d1bbd..182ac8c 100644 --- a/bin/df/Makefile +++ b/bin/df/Makefile @@ -8,6 +8,8 @@ BINMODE=2555 MOUNT= ${.CURDIR}/../../sbin/mount CFLAGS+= -I${MOUNT} +LDADD+= ${LIBM} +DPADD+= ${LIBM} .PATH: ${MOUNT} .include <bsd.prog.mk> |