Makefile revision 265420
1#	@(#)Makefile	8.1 (Berkeley) 6/2/93
2# $FreeBSD: head/bin/ls/Makefile 265420 2014-05-06 04:22:01Z imp $
3
4.include <src.opts.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.include <bsd.prog.mk>
19