Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / bin / ls / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/2/93
2 # $FreeBSD: src/bin/ls/Makefile,v 1.9.2.4 2002/04/19 13:22:45 ru Exp $
3 # $DragonFly: src/bin/ls/Makefile,v 1.2 2003/06/17 04:22:50 dillon Exp $
4
5 PROG=   ls
6 SRCS=   cmp.c ls.c print.c util.c
7 DPADD=  ${LIBM}
8 LDADD=  -lm
9
10 .if !defined(RELEASE_CRUNCH)
11 CFLAGS+= -DCOLORLS
12 DPADD+= ${LIBTERMCAP}
13 LDADD+= -ltermcap
14 .endif
15
16 .include <bsd.prog.mk>