blob: 25e141b061a12b610f52093e4e91f1ec5daa878e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.4 2003/12/15 05:28:40 otto Exp $
REGRESS_TARGETS=shcrash.sh seterror.sh varfunction.sh
shcrash.sh:
ulimit -c 0 && sh ${.CURDIR}/shcrash.sh
seterror.sh:
sh ${.CURDIR}/seterror.sh
varfunction.sh:
sh ${.CURDIR}/varfunction.sh
.PHONY: ${REGRESS_TARGETS}
.include <bsd.regress.mk>
|