blob: b3f9567833212978f8bf0412703e0095af05b2c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.4 2011/05/01 04:25:40 guenther Exp $
PROG= globtest
run-regress-${PROG}:
mkdir -m 755 -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u`
umask 022; touch `cat ${.CURDIR}/files`
chmod 0755 `grep '/r[^/]*$$' ${.CURDIR}/files`
chmod 0444 `grep '/s[^/]*$$' ${.CURDIR}/files`
chmod 0711 `grep '/t[^/]*$$' ${.CURDIR}/files`
./${PROG} ${.CURDIR}/${PROG}.in
clean:
rm -rf fake ${PROG} ${OBJS} *.core
.include <bsd.regress.mk>
|