Makefile revision 223367
1#
2# $FreeBSD: head/tools/regression/pipe/Makefile 139103 2004-12-21 08:47:35Z ru $
3#
4# "make" then "make regress".
5#
6PROG=	bigpipetest
7NO_MAN=
8
9regress:
10	@if ./bigpipetest; then \
11		echo "PASS"; \
12	else \
13		echo "FAIL"; \
14	fi
15
16.include <bsd.prog.mk>
17