Home | History | Annotate | Line # | Download | only in regex
Makefile revision 1.4
      1  1.4  dholland # $NetBSD: Makefile,v 1.4 2011/10/11 23:04:21 dholland Exp $
      2  1.1  pgoyette 
      3  1.1  pgoyette MKMAN=	no
      4  1.1  pgoyette 
      5  1.1  pgoyette .include <bsd.own.mk>
      6  1.1  pgoyette 
      7  1.1  pgoyette TESTSDIR=	${TESTSBASE}/lib/libc/regex
      8  1.1  pgoyette 
      9  1.1  pgoyette BINDIR=		${TESTSDIR}
     10  1.3  christos PROGS+=		h_regex
     11  1.3  christos SRCS.h_regex=	main.c split.c debug.c
     12  1.1  pgoyette CPPFLAGS+=	-I${NETBSDSRCDIR}/lib/libc/regex
     13  1.1  pgoyette 
     14  1.1  pgoyette TESTS_SH=	t_regex
     15  1.2  christos TESTS_C=	t_exhaust
     16  1.1  pgoyette 
     17  1.1  pgoyette FILESDIR=	${TESTSDIR}/data
     18  1.1  pgoyette FILES+=		README
     19  1.1  pgoyette FILES+=		data/anchor.in
     20  1.1  pgoyette FILES+=		data/backref.in
     21  1.1  pgoyette FILES+=		data/basic.in
     22  1.1  pgoyette FILES+=		data/bracket.in
     23  1.1  pgoyette FILES+=		data/c_comments.in
     24  1.1  pgoyette FILES+=		data/complex.in
     25  1.1  pgoyette FILES+=		data/error.in
     26  1.1  pgoyette FILES+=		data/meta.in
     27  1.1  pgoyette FILES+=		data/nospec.in
     28  1.1  pgoyette FILES+=		data/paren.in
     29  1.1  pgoyette FILES+=		data/regress.in
     30  1.1  pgoyette FILES+=		data/repet_bounded.in
     31  1.1  pgoyette FILES+=		data/repet_multi.in
     32  1.1  pgoyette FILES+=		data/repet_ordinary.in
     33  1.1  pgoyette FILES+=		data/startend.in
     34  1.1  pgoyette FILES+=		data/subexp.in
     35  1.1  pgoyette FILES+=		data/subtle.in
     36  1.1  pgoyette FILES+=		data/word_bound.in
     37  1.4  dholland FILES+=		data/zero.in
     38  1.1  pgoyette 
     39  1.1  pgoyette t_regex.sh: t_regex.awk t_regex.in
     40  1.1  pgoyette 	${TOOL_AWK} -f ${.CURDIR}/t_regex.awk ${.CURDIR}/t_regex.in > ${.TARGET}
     41  1.1  pgoyette 
     42  1.1  pgoyette CLEANFILES+= t_regex.sh
     43  1.1  pgoyette 
     44  1.1  pgoyette .include <bsd.test.mk>
     45