mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
14 lines
248 B
Makefile
14 lines
248 B
Makefile
# SysV Message Queue Regression Utility
|
|
# Obtained from: $NetBSD: Makefile,v 1.3 2002/03/05 21:56:59 thorpej Exp $
|
|
|
|
PROG= msgtest
|
|
MAN=
|
|
|
|
regress:
|
|
@if ./msgtest ./msgtest; then \
|
|
echo "PASS"; \
|
|
else \
|
|
echo "FAIL"; \
|
|
fi
|
|
|
|
.include <bsd.prog.mk>
|