aboutsummaryrefslogtreecommitdiff
path: root/bin/df/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/df/Makefile')
-rw-r--r--bin/df/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/df/Makefile b/bin/df/Makefile
new file mode 100644
index 000000000000..6d36a370b02c
--- /dev/null
+++ b/bin/df/Makefile
@@ -0,0 +1,18 @@
+# @(#)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}
+
+CFLAGS+= -DMOUNT_CHAR_DEVS
+SRCS+= getmntopts.c
+
+LIBADD= xo util
+
+.include <bsd.prog.mk>