xref: /freebsd/bin/ls/Makefile (revision 99e8005137088aafb1350e23b113d69b01b0820f)
1#	@(#)Makefile	8.1 (Berkeley) 6/2/93
2# $FreeBSD$
3
4
5PROG=	ls
6SRCS=	cmp.c ls.c print.c util.c
7
8.if !defined(RELEASE_CRUNCH)
9CFLAGS+= -DCOLORLS
10LDADD+= -ltermcap
11DPADD+= ${LIBTERMCAP}
12.endif
13
14.include <bsd.prog.mk>
15