5ebae837e1
cases and broke the world in some cases. Fixed some style bugs (the usual ones for DPADD and LDADD, misplacement of DPADD and LDADD, and misplacement of $FreeBSD$).
17 lines
233 B
Makefile
17 lines
233 B
Makefile
# @(#)Makefile 8.3 (Berkeley) 5/8/95
|
|
# $FreeBSD$
|
|
|
|
PROG= df
|
|
SRCS= df.c vfslist.c
|
|
BINGRP= operator
|
|
BINMODE=2555
|
|
|
|
MOUNT= ${.CURDIR}/../../sbin/mount
|
|
CFLAGS+= -I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
.include <bsd.prog.mk>
|