blob: 6b93edfc386cf5d5190027ee9469e898ecab46cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.2 2009/02/18 15:17:55 millert Exp $
PROG= globtest
run-regress-${PROG}:
mkdir -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u`
touch `cat ${.CURDIR}/files`
./${PROG} ${.CURDIR}/${PROG}.in
clean:
rm -rf fake ${PROG} ${OBJS} *.core
.include <bsd.regress.mk>
|