xref: /dragonfly/bin/df/Makefile (revision 6a3cbbc2)
1#	@(#)Makefile	8.3 (Berkeley) 5/8/95
2# $FreeBSD: src/bin/df/Makefile,v 1.9.2.3 2002/04/05 00:19:21 iedowse Exp $
3
4PROG=	df
5SRCS=	df.c vfslist.c
6
7.PATH:	${.CURDIR}/../../sbin/mount
8
9DPADD=	${LIBUTIL}
10LDADD=	-lutil
11
12.include <bsd.prog.mk>
13