Home | History | Annotate | Line # | Download | only in regex
Makefile revision 1.4.2.1
      1  1.4.2.1      yamt # $NetBSD: Makefile,v 1.4.2.1 2011/11/10 14:31:52 yamt 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.4.2.1      yamt TESTSDIR?=	${TESTSBASE}/lib/libc/regex
      8  1.4.2.1      yamt IMPLEMENTATION?=	-DREGEX_SPENCER
      9  1.4.2.1      yamt SKIPASSOC?=	left
     10      1.1  pgoyette 
     11      1.1  pgoyette BINDIR=		${TESTSDIR}
     12  1.4.2.1      yamt PROGS?=		h_regex
     13  1.4.2.1      yamt PROGS+=		h_regex_att
     14  1.4.2.1      yamt SRCS.h_regex_att=	att.c
     15      1.3  christos SRCS.h_regex=	main.c split.c debug.c
     16  1.4.2.1      yamt CPPFLAGS+=	-I${NETBSDSRCDIR}/lib/libc/regex ${IMPLEMENTATION}
     17      1.1  pgoyette 
     18  1.4.2.1      yamt TESTS_SH?=	t_regex
     19  1.4.2.1      yamt TESTS_SH+=	t_regex_att
     20      1.2  christos TESTS_C=	t_exhaust
     21      1.1  pgoyette 
     22      1.1  pgoyette FILESDIR=	${TESTSDIR}/data
     23      1.1  pgoyette FILES+=		README
     24      1.1  pgoyette FILES+=		data/anchor.in
     25      1.1  pgoyette FILES+=		data/backref.in
     26      1.1  pgoyette FILES+=		data/basic.in
     27      1.1  pgoyette FILES+=		data/bracket.in
     28      1.1  pgoyette FILES+=		data/c_comments.in
     29      1.1  pgoyette FILES+=		data/complex.in
     30      1.1  pgoyette FILES+=		data/error.in
     31      1.1  pgoyette FILES+=		data/meta.in
     32      1.1  pgoyette FILES+=		data/nospec.in
     33      1.1  pgoyette FILES+=		data/paren.in
     34      1.1  pgoyette FILES+=		data/regress.in
     35      1.1  pgoyette FILES+=		data/repet_bounded.in
     36      1.1  pgoyette FILES+=		data/repet_multi.in
     37      1.1  pgoyette FILES+=		data/repet_ordinary.in
     38      1.1  pgoyette FILES+=		data/startend.in
     39      1.1  pgoyette FILES+=		data/subexp.in
     40      1.1  pgoyette FILES+=		data/subtle.in
     41      1.1  pgoyette FILES+=		data/word_bound.in
     42      1.4  dholland FILES+=		data/zero.in
     43  1.4.2.1      yamt #FILES+=		data/att/README
     44  1.4.2.1      yamt FILES+=		data/att/basic.dat
     45  1.4.2.1      yamt FILES+=		data/att/categorization.dat
     46  1.4.2.1      yamt FILES+=		data/att/forcedassoc.dat
     47  1.4.2.1      yamt FILES+=		data/att/leftassoc.dat
     48  1.4.2.1      yamt FILES+=		data/att/nullsubexpr.dat
     49  1.4.2.1      yamt FILES+=		data/att/repetition.dat
     50  1.4.2.1      yamt FILES+=		data/att/rightassoc.dat
     51      1.1  pgoyette 
     52      1.1  pgoyette t_regex.sh: t_regex.awk t_regex.in
     53  1.4.2.1      yamt 	${TOOL_AWK} -f ${.ALLSRC} > ${.TARGET}
     54      1.1  pgoyette 
     55  1.4.2.1      yamt t_regex_att.sh: t_regex.awk t_regex_att.in
     56  1.4.2.1      yamt 	${TOOL_AWK} -v skipassoc=${SKIPASSOC} -f ${.ALLSRC} > ${.TARGET}
     57  1.4.2.1      yamt 
     58  1.4.2.1      yamt CLEANFILES+= t_regex.sh t_regex_att.sh
     59      1.1  pgoyette 
     60      1.1  pgoyette .include <bsd.test.mk>
     61