freebsd-skq/bin/ls/Makefile
Marcel Moolenaar 52e4a08c45 Convert ls(1) to use libxo(3).
Obtained from:	Phil Shafer <phil@juniper.net>
Sponsored by:	Juniper Networks, Inc.
2015-06-10 01:27:38 +00:00

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= util
.if !defined(RELEASE_CRUNCH) && \
${MK_LS_COLORS} != no
CFLAGS+= -DCOLORLS
LIBADD+= termcapw xo
.endif
.include <bsd.prog.mk>