xref: /freebsd-14.2/bin/ls/Makefile (revision d0b2dbfa)
1#	@(#)Makefile	8.1 (Berkeley) 6/2/93
2
3.include <src.opts.mk>
4
5PACKAGE=runtime
6PROG=	ls
7SRCS=	cmp.c ls.c print.c util.c
8LIBADD=	util
9
10.if ${MK_LS_COLORS} != no
11CFLAGS+= -DCOLORLS
12LIBADD+=	termcapw
13.endif
14
15HAS_TESTS=
16SUBDIR.${MK_TESTS}+= tests
17
18.include <bsd.prog.mk>
19