blob: 4f6fbe86169439796ccb1674cfa45b95ec398f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.4 2017/10/16 13:52:50 anton Exp $
REGRESS_TARGETS=run-regress-showargs run-regress-copyargs
XARGS= /usr/bin/xargs
PROG= showargs
run-regress-showargs:
sh ${.CURDIR}/xargs-L.sh ${XARGS}
run-regress-copyargs:
sh ${.CURDIR}/xargs-copy.sh ${XARGS}
.include <bsd.regress.mk>
|