e653b48c80
OK'ed by: core
16 lines
263 B
Makefile
16 lines
263 B
Makefile
# $FreeBSD$
|
|
# SysV Shared Memory Regression Utility
|
|
# Obtained from: $NetBSD: Makefile,v 1.3 2002/03/05 21:57:00 thorpej Exp $
|
|
|
|
PROG= shmtest
|
|
NO_MAN=
|
|
|
|
regress:
|
|
@if ./shmtest ./shmtest; then \
|
|
echo "PASS"; \
|
|
else \
|
|
echo "FAIL"; \
|
|
fi
|
|
|
|
.include <bsd.prog.mk>
|