Makefile revision 285425
1#	@(#)Makefile	8.1 (Berkeley) 6/2/93
2# $FreeBSD: head/bin/ls/Makefile 285425 2015-07-12 18:40:31Z marius $
3
4.include <src.opts.mk>
5
6PROG=	ls
7SRCS=	cmp.c ls.c print.c util.c
8LIBADD=	util xo
9
10.if !defined(RELEASE_CRUNCH) && \
11	${MK_LS_COLORS} != no
12CFLAGS+= -DCOLORLS
13LIBADD+=	termcapw
14.endif
15
16.include <bsd.prog.mk>
17