3ad254b3de
a note of it in the release Makefile.
15 lines
243 B
Makefile
15 lines
243 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c setflags.c ls.c print.c util.c
|
|
.PATH: ${.CURDIR}/../../lib/libc/gen
|
|
|
|
.if !defined(RELEASE_BUILD_FIXIT)
|
|
CFLAGS+= -DCOLORLS
|
|
LDADD= -lncurses
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|