diff options
Diffstat (limited to 'src/regress/lib/libc/glob/Makefile')
-rw-r--r-- | src/regress/lib/libc/glob/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/regress/lib/libc/glob/Makefile b/src/regress/lib/libc/glob/Makefile new file mode 100644 index 0000000000..4a3731a970 --- /dev/null +++ b/src/regress/lib/libc/glob/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2008/10/01 23:04:36 millert Exp $ | ||
2 | |||
3 | PROG= globtest | ||
4 | |||
5 | run-regress-${PROG}: | ||
6 | mkdir -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u` | ||
7 | touch `cat files` | ||
8 | ./${PROG} ${.CURDIR}/${PROG}.in | ||
9 | |||
10 | clean: | ||
11 | rm -rf fake ${PROG} ${OBJS} *.core | ||
12 | |||
13 | .include <bsd.regress.mk> | ||