blob: ef5758b2d4845dba615af1f1732a31a23e9837e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $OpenBSD: Makefile,v 1.7 2021/12/24 10:25:36 visa Exp $
PROGS= poll_close poll_iocond poll_regevent pollnval pollretval
LDADD= -lpthread -lutil
WARNINGS= yes
REGRESS_TARGETS+= run-regress-poll_close
REGRESS_TARGETS+= run-regress-poll_regevent
REGRESS_TARGETS+= run-regress-pollnval
REGRESS_TARGETS+= run-regress-pollretval
IOCOND_TESTS= fifo pipe pty socket-tcp socket-udp socket-unix
.for t in ${IOCOND_TESTS}
run-regress-poll_iocond-${t}: poll_iocond
./poll_iocond ${t}
REGRESS_TARGETS+= run-regress-poll_iocond-${t}
.endfor
CLEANFILES+= iocond_fifo
.include <bsd.regress.mk>
|