blob: fde4f0395d0269e415ef87914087f6eea6890f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile,v 1.2 2023/06/13 04:59:10 anton Exp $
SEQ?= /usr/bin/seq
CLEANFILES+= *.out
REGRESS_TARGETS+=seqtest
seqtest:
sh ${.CURDIR}/$@.sh ${SEQ} $@.out
diff ${.CURDIR}/$@.expected $@.out
.include <bsd.regress.mk>
|