1#	$OpenBSD: Makefile,v 1.1.1.1 2018/05/03 17:11:54 bluhm Exp $
2
3# The following port must be installed:
4#
5# posixtestsuite	open POSIX test suite
6
7# Run the conformance tests of the open POSIX test suite.  The
8# test suite http://posixtest.sourceforge.net/ is used as a package
9# and run as regress.
10
11.if ! (make(clean) || make(cleandir) || make(obj))
12.if ! exists(/usr/local/bin/posixtestsuite)
13regress:
14	@echo Install misc/posixtestsuite port for additional tests.
15	@echo SKIPPED
16.endif
17.endif
18
19regress:
20	/usr/local/bin/posixtestsuite
21
22clean:
23	rm -rf logfile conformance functional
24
25.include <bsd.regress.mk>
26