# HG changeset patch # User Oleksandr Gavenko # Date 1341937793 -10800 # Node ID 3c96103ced3240bcaa756a52ad58bcc8a0797650 # Parent 407f2a82ef265e0609fa9ce7a7dcc40c54a07a6b Exclude file prefixes from output to dict names shorter (and so more readable). diff -r 407f2a82ef26 -r 3c96103ced32 Makefile --- a/Makefile Tue Jul 10 19:25:18 2012 +0300 +++ b/Makefile Tue Jul 10 19:29:53 2012 +0300 @@ -343,7 +343,7 @@ total=0; \ for dic in $(C5_FILES); do \ cnt=`grep '^_____' $$dic | wc -l`; \ - printf '%40s %5s\n' $$dic $$cnt; \ + printf '%40s %5s\n' $${dic%.dict-c5} $$cnt; \ total=$$(($$total + $$cnt)); \ done; \ printf '%40s %5s\n' '**Total**' $$total; \