]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - bin/ls/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / bin / ls / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/2/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   ls
7 SRCS=   cmp.c ls.c print.c util.c
8 DPADD=  ${LIBUTIL}
9 LDADD=  -lutil
10
11 .if !defined(RELEASE_CRUNCH)
12 CFLAGS+= -DCOLORLS
13 DPADD+= ${LIBTERMCAP}
14 LDADD+= -ltermcap
15 .endif
16
17 .include <bsd.prog.mk>