]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/ls/Makefile
Now that we have MK_LS_COLORS, we don't need RELEASE_CRUNCH check here.
[FreeBSD/FreeBSD.git] / bin / ls / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/2/93
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 PACKAGE=runtime
7 PROG=   ls
8 SRCS=   cmp.c ls.c print.c util.c
9 LIBADD= util
10
11 .if ${MK_LS_COLORS} != no
12 CFLAGS+= -DCOLORLS
13 LIBADD+=        termcapw
14 .endif
15
16 HAS_TESTS=
17 SUBDIR.${MK_TESTS}+= tests
18
19 .include <bsd.prog.mk>