Makefile revision 289965
1#	@(#)Makefile	8.1 (Berkeley) 6/2/93
2# $FreeBSD: stable/10/bin/ls/Makefile 289965 2015-10-25 23:03:04Z ngie $
3
4.include <bsd.own.mk>
5
6PROG=	ls
7SRCS=	cmp.c ls.c print.c util.c
8DPADD=	${LIBUTIL}
9LDADD=	-lutil
10
11.if !defined(RELEASE_CRUNCH) && \
12	${MK_LS_COLORS} != no
13CFLAGS+= -DCOLORLS
14DPADD+=	${LIBTERMCAP}
15LDADD+=	-ltermcap
16.endif
17
18.if ${MK_TESTS} != "no"
19SUBDIR+=	tests
20.endif
21
22.include <bsd.prog.mk>
23