freebsd-dev/bin/ls/Makefile
Ruslan Ermilov 3c4869d927 Drop support for -DRELEASE_BUILD_FIXIT and -DCRUNCHED_BINARY in
${CFLAGS}.  The only supported method thus is -DRELEASE_CRUNCH.
2001-04-03 13:34:35 +00:00

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>