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 !defined(RELEASE_CRUNCH) && \
12	${MK_LS_COLORS} != no
13CFLAGS+= -DCOLORLS
14LIBADD+=	termcapw
15.endif
16
17HAS_TESTS=
18SUBDIR.${MK_TESTS}+= tests
19
20.include <bsd.prog.mk>
21