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