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