1 1.1 pgoyette # $NetBSD: Makefile,v 1.1 2011/01/09 01:00:40 pgoyette 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.1 pgoyette 16 1.1 pgoyette FILESDIR= ${TESTSDIR}/data 17 1.1 pgoyette FILES+= README 18 1.1 pgoyette FILES+= data/anchor.in 19 1.1 pgoyette FILES+= data/backref.in 20 1.1 pgoyette FILES+= data/basic.in 21 1.1 pgoyette FILES+= data/bracket.in 22 1.1 pgoyette FILES+= data/c_comments.in 23 1.1 pgoyette FILES+= data/complex.in 24 1.1 pgoyette FILES+= data/error.in 25 1.1 pgoyette FILES+= data/meta.in 26 1.1 pgoyette FILES+= data/nospec.in 27 1.1 pgoyette FILES+= data/nul.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.1 pgoyette 38 1.1 pgoyette t_regex.sh: t_regex.awk t_regex.in 39 1.1 pgoyette ${TOOL_AWK} -f ${.CURDIR}/t_regex.awk ${.CURDIR}/t_regex.in > ${.TARGET} 40 1.1 pgoyette 41 1.1 pgoyette CLEANFILES+= t_regex.sh 42 1.1 pgoyette 43 1.1 pgoyette .include <bsd.test.mk> 44