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