1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# $OpenBSD: Makefile,v 1.1 2014/06/18 08:24:00 matthew Exp $ PROG= arc4random-fork REGRESS_TARGETS= \ run \ run-buf \ run-prefork \ run-buf-prefork run: ${PROG} ./${PROG} run-buf: ${PROG} ./${PROG} -b run-prefork: ${PROG} ./${PROG} -p run-buf-prefork: ${PROG} ./${PROG} -bp .PHONY: ${REGRESS_TARGETS} .include <bsd.regress.mk>