mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
7304f61f9e
in ls(1) and ps(1). Sponsored by: DARPA, NAI Labs
15 lines
220 B
Makefile
15 lines
220 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c lomac.c
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+= -DCOLORLS
|
|
LDADD+= -ltermcap
|
|
DPADD+= ${LIBTERMCAP}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|