blob: aa8ad2295ea1e343abd41b64781515810be8cd89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.6 2006/07/21 22:59:05 ray Exp $
TESTSCRIPTS=t1 t2 t3 t4 t5 t6
.for t in ${TESTSCRIPTS}
REGRESS_TARGETS+=t-${t}
CLEANFILES+=${t}.tar
t-${t}:
sh ${.CURDIR}/${t}.sh ${.CURDIR} ${.OBJDIR}
.endfor
.PHONY: ${REGRESS_TARGETS}
.include <bsd.regress.mk>
|