mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
17 lines
229 B
Makefile
17 lines
229 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= ls
|
|
SRCS= cmp.c ls.c print.c util.c
|
|
LIBADD= util
|
|
|
|
.if ${MK_LS_COLORS} != no
|
|
CFLAGS+= -DCOLORLS
|
|
LIBADD+= termcapw
|
|
.endif
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|