mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 09:21:31 -05:00
17 lines
184 B
Makefile
17 lines
184 B
Makefile
|
|
#
|
||
|
|
# $FreeBSD$
|
||
|
|
#
|
||
|
|
# "make" then "make regress".
|
||
|
|
#
|
||
|
|
PROG= bigpipetest
|
||
|
|
NOMAN= yes
|
||
|
|
|
||
|
|
regress:
|
||
|
|
@if ./bigpipetest; then \
|
||
|
|
echo "PASS"; \
|
||
|
|
else \
|
||
|
|
echo "FAIL"; \
|
||
|
|
fi
|
||
|
|
|
||
|
|
.include <bsd.prog.mk>
|