]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/ls/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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>