summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/getaddrinfo/Makefile
blob: 31764f3db180f3fb7caad1c736bcd09c3fd54ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$OpenBSD: Makefile,v 1.2 2002/08/26 13:11:41 art Exp $

PROG=		gaitest
SRCS=		gaitest.c
NOMAN=		# defined
CLEANFILES+=	out

REGRESSTARGETS=do-test

do-test: ${PROG}
	sh ${.CURDIR}/testsuite.sh >out 2>&1
	@if diff -u out ${.CURDIR}/answer; then \
		echo SUCCESS; \
	else \
		echo FAIL; \
		exit 1; \
	fi

.include <bsd.regress.mk>