1# $OpenBSD: Makefile,v 1.8 2003/06/15 16:41:34 mickey Exp $ 2 3PROG= kqueue-test 4CFLAGS+=-Wall 5SRCS= kqueue-pipe.c kqueue-fork.c main.c kqueue-process.c kqueue-random.c \ 6 kqueue-pty.c 7LDADD= -lutil 8DPADD= ${DPUTIL} 9 10kq-pipe: ${PROG} 11 ./${PROG} -p 12kq-fork: ${PROG} 13 ./${PROG} -f 14kq-process: ${PROG} 15 ./${PROG} -P 16kq-random: ${PROG} 17 ./${PROG} -r 18kq-pty: ${PROG} 19 ${SUDO} ./${PROG} -T 20 21REGRESS_TARGETS=kq-pipe kq-fork kq-process kq-random kq-pty 22.PHONY: ${REGRESS_TARGETS} 23 24.include <bsd.regress.mk> 25