ee23b7758f
Note: tcsh(1) has a MK_TCSH=no test, so this should be a separate package, which requires pre-install/post-install scripts, to be added later. Sponsored by: The FreeBSD Foundation
16 lines
210 B
Makefile
16 lines
210 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 5/8/95
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
MOUNT= ${.CURDIR}/../../sbin/mount
|
|
.PATH: ${MOUNT}
|
|
|
|
PROG= df
|
|
SRCS= df.c vfslist.c
|
|
|
|
CFLAGS+= -I${MOUNT}
|
|
|
|
LIBADD= xo util
|
|
|
|
.include <bsd.prog.mk>
|