2002-07-14 18:21:07 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
|
2017-01-10 20:43:32 +00:00
|
|
|
.include <src.opts.mk>
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
PROG= tail
|
|
|
|
SRCS= forward.c misc.c read.c reverse.c tail.c
|
|
|
|
|
2019-06-05 22:55:00 +00:00
|
|
|
.if ${MK_CASPER} != "no" && !defined(RESCUE)
|
2019-06-05 22:40:49 +00:00
|
|
|
LIBADD+= casper
|
|
|
|
LIBADD+= cap_fileargs
|
|
|
|
CFLAGS+= -DWITH_CASPER
|
|
|
|
.endif
|
|
|
|
|
2017-08-02 08:50:42 +00:00
|
|
|
HAS_TESTS=
|
2017-08-02 08:35:51 +00:00
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
2017-01-10 20:43:32 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
.include <bsd.prog.mk>
|