xref: /dflybsd-src/usr.bin/tail/Makefile (revision b743b76f8c2cc8315de7eac87507463cccaded9c)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2
3PROG=	tail
4MAN=	tail.1 tac.1
5SRCS=	forward.c misc.c read.c reverse.c tail.c
6
7LINKS=	${BINDIR}/tail ${BINDIR}/tac
8
9.if defined(BOOTSTRAPPING)
10CFLAGS+= -DBOOTSTRAPPING
11.endif
12
13.include <bsd.prog.mk>
14