NetBSD/regress/lib/libc/getaddrinfo/Makefile
lukem f85d2d1c14 Use ${HOST_SH} instead of `sh'.
If necessary, pull in <bsd.sys.mk> to get the definition of HOST_SH;
Makefiles that pull in one of (most of) <bsd.*.mk> will get this anyway.
2003-10-26 07:25:33 +00:00

19 lines
315 B
Makefile

# $NetBSD: Makefile,v 1.4 2003/10/26 07:25:34 lukem Exp $
NOMAN= # defined
PROG= gaitest
SRCS= gaitest.c
CLEANFILES+= out
regress: ${PROG}
${HOST_SH} ${.CURDIR}/testsuite.sh >out 2>&1
@if diff -u ${.CURDIR}/answer out; then \
echo SUCCESS; \
else \
echo FAIL; \
exit 1; \
fi
.include <bsd.prog.mk>