1 1.2 christos # $NetBSD: Makefile,v 1.2 2011/10/09 18:21:08 christos 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.1 pgoyette PROG= h_regex 11 1.1 pgoyette SRCS= 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/nul.in 29 1.1 pgoyette FILES+= data/paren.in 30 1.1 pgoyette FILES+= data/regress.in 31 1.1 pgoyette FILES+= data/repet_bounded.in 32 1.1 pgoyette FILES+= data/repet_multi.in 33 1.1 pgoyette FILES+= data/repet_ordinary.in 34 1.1 pgoyette FILES+= data/startend.in 35 1.1 pgoyette FILES+= data/subexp.in 36 1.1 pgoyette FILES+= data/subtle.in 37 1.1 pgoyette FILES+= data/word_bound.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