summaryrefslogtreecommitdiff
path: root/regress/bin/pax/Makefile
diff options
context:
space:
mode:
authorChad Loder <cloder@cvs.openbsd.org>2005-04-14 15:17:08 +0000
committerChad Loder <cloder@cvs.openbsd.org>2005-04-14 15:17:08 +0000
commit97150a907af5da45347122ab22d5411d30b7b3b8 (patch)
tree54458eb619c6e24835cd09494a45c88ac9120732 /regress/bin/pax/Makefile
parent0376f10f6c035e7fa72d59fdf7b92fb4ec4f2c26 (diff)
Initial pax regression tests. OK otto
Diffstat (limited to 'regress/bin/pax/Makefile')
-rw-r--r--regress/bin/pax/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/regress/bin/pax/Makefile b/regress/bin/pax/Makefile
new file mode 100644
index 00000000000..d57de23c1be
--- /dev/null
+++ b/regress/bin/pax/Makefile
@@ -0,0 +1,15 @@
+# $OpenBSD: Makefile,v 1.1 2005/04/14 15:17:07 cloder Exp $
+
+TESTSCRIPTS=t1
+
+.for t in ${TESTSCRIPTS}
+REGRESS_TARGETS+=t-${t}
+CLEANFILES+=${t}.tar
+
+t-${t}:
+ sh ${.CURDIR}/${t}.sh ${.CURDIR} ${.OBJDIR}
+.endfor
+
+.PHONY: ${REGRESS_TARGETS}
+
+.include <bsd.regress.mk>