summaryrefslogtreecommitdiff
path: root/bin/ls/Makefile
blob: 574ab0d71a457c42ce8a6753d041993a56d846b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.include <src.opts.mk>

PACKAGE=runtime
PROG=	ls
SRCS=	cmp.c ls.c print.c util.c
LIBADD=	util

.if ${MK_LS_COLORS} != no
CFLAGS+= -DCOLORLS
LIBADD+=	termcapw
.endif

HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests

.include <bsd.prog.mk>