3c4869d927
${CFLAGS}. The only supported method thus is -DRELEASE_CRUNCH.
15 lines
212 B
Makefile
15 lines
212 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+= -DCOLORLS
|
|
LDADD+= -ltermcap
|
|
DPADD+= ${LIBTERMCAP}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|