]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/tail/Makefile
Merge commit 'acb089b983171667467adc66f56a723b609ed22e' into kbsd/vis
[FreeBSD/FreeBSD.git] / usr.bin / tail / Makefile
1 # $FreeBSD$
2 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
3
4 .include <src.opts.mk>
5
6 PROG=   tail
7 SRCS=   forward.c misc.c read.c reverse.c tail.c
8 LIBADD= util
9
10 .if ${MK_CASPER} != "no" && !defined(RESCUE)
11 LIBADD+= casper
12 LIBADD+= cap_fileargs
13 CFLAGS+= -DWITH_CASPER
14 .endif
15
16 HAS_TESTS=
17 SUBDIR.${MK_TESTS}+= tests
18
19 .include <bsd.prog.mk>