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