643ac419fa
- Consistently support -q (quiet) and -v (verbose) - Allow specifying numbers with SI prefixes supported by expand_number(3) - Remove 2^31 limit on lines for head(1) MFC after: 2 weeks Reviewed by: lwhsu, pauamma, gbe Relnotes: yes Differential Revision: https://reviews.freebsd.org/D35720
20 lines
322 B
Makefile
20 lines
322 B
Makefile
# $FreeBSD$
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= tail
|
|
SRCS= forward.c misc.c read.c reverse.c tail.c
|
|
LIBADD= util
|
|
|
|
.if ${MK_CASPER} != "no" && !defined(RESCUE)
|
|
LIBADD+= casper
|
|
LIBADD+= cap_fileargs
|
|
CFLAGS+= -DWITH_CASPER
|
|
.endif
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|