NetBSD/usr.bin/tail/Makefile
maya 9b177b90f0 Add arguments to tail:
-q: suppress filename headers when multiple files are used
  -v: print filename headers even when only one file is used

head already supports the same arguments, which originated in GNU head.
GNU tail also has the same flags.


Add tac, a hard link to 'tail -rq'.
Prints a file in reverse line order.

Similar to GNU tac, but lacking any options.

Add accompanying documentation.
2017-10-01 20:49:24 +00:00

12 lines
233 B
Makefile

# $NetBSD: Makefile,v 1.4 2017/10/01 20:49:24 maya Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= tail
SRCS= forward.c misc.c read.c reverse.c tail.c
LINKS= ${BINDIR}/tail ${BINDIR}/tac
MAN= tail.1 tac.1
.include <bsd.prog.mk>