1994-05-26 02:18:55 -04:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
1999-08-27 19:15:48 -04:00
|
|
|
# $FreeBSD$
|
1994-05-26 02:18:55 -04:00
|
|
|
|
2014-05-06 00:22:01 -04:00
|
|
|
.include <src.opts.mk>
|
2012-05-19 14:05:00 -04:00
|
|
|
|
2016-02-09 11:58:50 -05:00
|
|
|
PACKAGE=runtime
|
1994-05-26 02:18:55 -04:00
|
|
|
PROG= ls
|
2002-10-23 20:07:30 -04:00
|
|
|
SRCS= cmp.c ls.c print.c util.c
|
2015-08-24 12:26:20 -04:00
|
|
|
LIBADD= xo util
|
1994-05-26 02:18:55 -04:00
|
|
|
|
2012-05-19 14:05:00 -04:00
|
|
|
.if !defined(RELEASE_CRUNCH) && \
|
|
|
|
|
${MK_LS_COLORS} != no
|
2000-06-04 22:14:01 -04:00
|
|
|
CFLAGS+= -DCOLORLS
|
2015-07-12 14:40:31 -04:00
|
|
|
LIBADD+= termcapw
|
2000-06-04 22:25:55 -04:00
|
|
|
.endif
|
2000-06-04 22:14:01 -04:00
|
|
|
|
2015-09-27 23:36:15 -04:00
|
|
|
.if ${MK_TESTS} != "no"
|
|
|
|
|
SUBDIR+= tests
|
|
|
|
|
.endif
|
|
|
|
|
|
1994-05-26 02:18:55 -04:00
|
|
|
.include <bsd.prog.mk>
|