NetBSD/regress/sys/kern/ras/ras2/Makefile
skrll 0ffafee1bf GCC 4 requires -fno-reorder-blocks to ensure that RAS_START/RAS_END
covers the right bits of code in these tests.
2006-09-19 20:17:28 +00:00

20 lines
268 B
Makefile

# $NetBSD: Makefile,v 1.3 2006/09/19 20:17:28 skrll Exp $
NOMAN= #defined
PROG= ras2
WARNS= 2
regress:
@if ./${PROG} ; then \
echo "PASSED"; \
else \
echo "FAILED"; \
fi
.include <bsd.prog.mk>
.if ${HAVE_GCC} == 4
CFLAGS+= -fno-reorder-blocks
.endif