mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
15 lines
248 B
Makefile
15 lines
248 B
Makefile
# SysV Shared Memory Regression Utility
|
|
# Obtained from: $NetBSD: Makefile,v 1.3 2002/03/05 21:57:00 thorpej Exp $
|
|
|
|
PROG= shmtest
|
|
MAN=
|
|
|
|
regress:
|
|
@if ./shmtest ./shmtest; then \
|
|
echo "PASS"; \
|
|
else \
|
|
echo "FAIL"; \
|
|
fi
|
|
|
|
.include <bsd.prog.mk>
|