freebsd-dev/bin/df/Makefile
Bruce Evans 5ebae837e1 Fixed LDADD. Using ${LIBM} instead of -lm gave the wrong libm in most
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$).
2000-03-27 14:53:26 +00:00

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>