freebsd-dev/usr.bin/du/Makefile
Bruce Evans 1f82591eba Fixed LDADD. Using ${LIBM} instead of -lm gave the wrong libm in most
cases and broke the world in some cases.

Fixed style bugs for DPADD and LDADD (don't use += for variables defined
only once).
2000-03-27 15:02:59 +00:00

10 lines
124 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
PROG= du
CFLAGS+= -Wall
DPADD= ${LIBM}
LDADD= -lm
.include <bsd.prog.mk>