d26727d972
`SUBDIR.${MK_TESTS}+= tests` idiom. This is a follow up to r321912.
21 lines
312 B
Makefile
21 lines
312 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
LIBADD= xo util
|
|
|
|
.if !defined(RELEASE_CRUNCH) && \
|
|
${MK_LS_COLORS} != no
|
|
CFLAGS+= -DCOLORLS
|
|
LIBADD+= termcapw
|
|
.endif
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|