2118f42afd
from the latter.
19 lines
295 B
Makefile
19 lines
295 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
.if !defined(RELEASE_CRUNCH) && \
|
|
${MK_LS_COLORS} != no
|
|
CFLAGS+= -DCOLORLS
|
|
DPADD+= ${LIBTERMCAP}
|
|
LDADD+= -ltermcap
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|