1#	$OpenBSD: Makefile,v 1.2 2020/12/16 20:37:16 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 -f logfile *.log uname.out posixtestsuite.html
24	rm -rf conformance functional
25
26.include <bsd.regress.mk>
27