blob: 7343a1733d6ee04ef2e218240e0f7a5b2e856b14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.3 2005/04/30 17:36:58 otto Exp $
TESTSCRIPTS=t1 t2 t3
.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>
|