xref: /openbsd/regress/sys/kern/sosplice/Makefile (revision dafd265d)
1#	$OpenBSD: Makefile,v 1.4 2013/08/07 00:38:41 bluhm Exp $
2
3
4PERL_REQUIRE !=	perl -Mstrict -Mwarnings -e ' \
5    eval { require BSD::Socket::Splice } or print $@; \
6    eval { require IO::Socket::INET6 } or print $@; \
7    eval { require Socket6 } or print $@; \
8'
9
10SUBDIR +=	perf
11.if empty(PERL_REQUIRE)
12SUBDIR +=	error
13SUBDIR +=	tcp
14SUBDIR +=	udp
15.else
16all: _SUBDIRUSE
17	@echo "${PERL_REQUIRE}"
18	@echo install these perl packages for additional tests
19.endif
20
21.include <bsd.subdir.mk>
22