From a82fb28ede37a9e81cfca1b99b18c04746bcede5 Mon Sep 17 00:00:00 2001 From: Dmitry Mikhirev Date: Mon, 17 Nov 2014 14:34:33 +0300 Subject: code comments --- GNUmakefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index c4999b2..3557b15 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -14,11 +14,23 @@ pcre.so: pcre.c check: $(tests) + +### TEST EXPRESSIONS ### +# each expression is passed to test(1) + +# simple test for pattern matching test001 = '$(m ^test$,test)' = test + +# test for pattern expansion test002: var = es test002 = '$(m ^t$(var)t$$,test,E)' = test + +# test for string capturing by number test003 = '$(m ^t(es)t$,test)$0$1' = testtestes -a -z '$(m a,b)$0$1' +### END OF TEST EXPRESSIONS ### + + test%: @if [ $($@) ] ; then \ echo '$@ PASSED'; \ -- cgit v1.2.1