1# $OpenBSD: Makefile,v 1.2 2015/11/24 04:04:19 tedu Exp $ 2 3REGRESS_TARGETS = follow-renames follow-overwrite-by-file follow-overwrite-data follow-removed-recreated follow-newsyslog 4REGRESS_TARGETS+= forward-blocks forward-chars forward-lines reverse-blocks reverse-chars reverse-lines 5REGRESS_TARGETS+= forward-blocks-rprint forward-chars-rprint forward-lines-rprint 6REGRESS_TARGETS+= reverse-blocks-rprint reverse-chars-rprint reverse-lines-rprint 7REGRESS_ROOT_TARGETS = follow-newsyslog 8 9.for t in ${REGRESS_ROOT_TARGETS} 10${t}: 11 ${SUDO} sh ${.CURDIR}/${t}.sh 12.endfor 13 14.for t in ${REGRESS_TARGETS} 15${t}: 16 sh ${.CURDIR}/${t}.sh 17.endfor 18 19.include <bsd.regress.mk> 20