xref: /dragonfly/bin/ls/Makefile (revision 0bb9290e)
1#	@(#)Makefile	8.1 (Berkeley) 6/2/93
2# $FreeBSD: src/bin/ls/Makefile,v 1.26 2004/05/25 14:53:47 pjd Exp $
3# $DragonFly: src/bin/ls/Makefile,v 1.6 2005/09/19 10:14:29 asmodai Exp $
4
5PROG=	ls
6SRCS=	cmp.c ls.c print.c util.c
7
8DPADD=	${LIBUTIL}
9LDADD=	-lutil
10
11.if !defined(RELEASE_CRUNCH)
12CFLAGS+= -DCOLORLS
13DPADD+=	${LIBTERMCAP}
14LDADD+=	-ltermcap
15.endif
16
17.include <bsd.prog.mk>
18