# @(#)Makefile 8.1 (Berkeley) 6/2/93 # $FreeBSD: head/bin/ls/Makefile 268804 2014-07-17 18:24:34Z brooks $ .include PROG= ls SRCS= cmp.c ls.c print.c util.c DPADD= ${LIBUTIL} LDADD= -lutil .if !defined(RELEASE_CRUNCH) && \ ${MK_LS_COLORS} != no CFLAGS+= -DCOLORLS DPADD+= ${LIBTERMCAPW} LDADD+= -ltermcapw .endif .include