1# @(#)Makefile 8.1 (Berkeley) 6/2/93 2# $FreeBSD$ 3 4.include <src.opts.mk> 5 6PROG= ls 7SRCS= cmp.c ls.c print.c util.c 8LIBADD= xo util 9 10.if !defined(RELEASE_CRUNCH) && \ 11 ${MK_LS_COLORS} != no 12CFLAGS+= -DCOLORLS 13LIBADD+= termcapw 14.endif 15 16.if ${MK_TESTS} != "no" 17SUBDIR+= tests 18.endif 19 20.include <bsd.prog.mk> 21