Remove /* within block comment.
[dragonfly/netmp.git] / bin / ls / Makefile
blob6ebbe791361b44ca8990d26a3b440c4620529249
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 $
5 PROG= ls
6 SRCS= cmp.c ls.c print.c util.c
8 DPADD= ${LIBUTIL}
9 LDADD= -lutil
11 .if !defined(RELEASE_CRUNCH)
12 CFLAGS+= -DCOLORLS
13 DPADD+= ${LIBTERMCAP}
14 LDADD+= -ltermcap
15 .endif
17 .include <bsd.prog.mk>