12cd1730ee
static
17 lines
254 B
Makefile
17 lines
254 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
LIBADD= util
|
|
|
|
.if !defined(RELEASE_CRUNCH) && \
|
|
${MK_LS_COLORS} != no
|
|
CFLAGS+= -DCOLORLS
|
|
LIBADD+= termcapw
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|