]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/ls/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / bin / ls / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/2/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   ls
7 SRCS=   cmp.c ls.c print.c util.c
8 DPADD=  ${LIBUTIL}
9 LDADD=  -lutil
10
11 .if !defined(RELEASE_CRUNCH) && \
12         ${MK_LS_COLORS} != no
13 CFLAGS+= -DCOLORLS
14 DPADD+= ${LIBTERMCAP}
15 LDADD+= -ltermcap
16 .endif
17
18 .include <bsd.prog.mk>