mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
d1a0d267b7
Local changes incorporated by 0.4.5: r284340 Local changes retained: r276260, r282117 Obtained from: https://github.com/Juniper/libxo
17 lines
257 B
Makefile
17 lines
257 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
LIBADD= xo util
|
|
|
|
.if !defined(RELEASE_CRUNCH) && \
|
|
${MK_LS_COLORS} != no
|
|
CFLAGS+= -DCOLORLS
|
|
LIBADD+= termcapw
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|