blob: ef209a3e189d89018bbc3b2c6ea9d54620116199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.3 2010/09/24 13:32:55 djm Exp $
PROG= globtest
run-regress-${PROG}:
mkdir -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u`
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>
|