1# $MirOS: src/lib/libc/regex/test/Makefile,v 1.4 2007/02/12 05:54:34 tg Exp $
2
3all: ${PROG} regress
4
5tlc:
6	cd ${.CURDIR} && exec ${MAKE} _MODSRC_LIB_LIBC_REGEX_NOSRCS=1 all
7
8LIBCSRCDIR=	${.CURDIR}/../..
9CPPFLAGS+=	-I${.CURDIR}/..
10PROG=		re
11SRCS=		debug.c main.c split.c
12NOMAN=		Yes
13
14regress: ${PROG} ${.CURDIR}/tests
15	./${PROG} <${.CURDIR}/tests
16	./${PROG} -el <${.CURDIR}/tests
17	./${PROG} -er <${.CURDIR}/tests
18
19.include <bsd.prog.mk>
20