mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
than the LOMAC-specific interfaces for listing MAC labels. This permits ls to view MAC labels in a manner similar to getfmac, when ls is used with the -l argument. Next generation LOMAC will use the MAC Framework so should "just" work with this and other policies. Not the prettiest code in the world, but then, neither is ls(1). Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
17 lines
259 B
Makefile
17 lines
259 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
# $FreeBSD$
|
|
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
NO_WERROR=1
|
|
WFORMAT=0
|
|
DPADD= ${LIBM}
|
|
LDADD= -lm
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
CFLAGS+= -DCOLORLS
|
|
DPADD+= ${LIBTERMCAP}
|
|
LDADD+= -ltermcap
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|