summaryrefslogtreecommitdiff
path: root/regress/usr.bin/tail/Makefile
blob: f0da0dd4753a1267d456665aa008cd0d67cc892f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $OpenBSD: Makefile,v 1.2 2015/11/24 04:04:19 tedu Exp $

REGRESS_TARGETS = follow-renames follow-overwrite-by-file follow-overwrite-data follow-removed-recreated follow-newsyslog
REGRESS_TARGETS+= forward-blocks forward-chars forward-lines reverse-blocks reverse-chars reverse-lines
REGRESS_TARGETS+= forward-blocks-rprint forward-chars-rprint forward-lines-rprint
REGRESS_TARGETS+= reverse-blocks-rprint reverse-chars-rprint reverse-lines-rprint
REGRESS_ROOT_TARGETS = follow-newsyslog

.for t in ${REGRESS_ROOT_TARGETS}
${t}:
	${SUDO} sh ${.CURDIR}/${t}.sh
.endfor

.for t in ${REGRESS_TARGETS}
${t}:
	sh ${.CURDIR}/${t}.sh
.endfor

.include <bsd.regress.mk>