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