Exclude file prefixes from output to dict names shorter (and so more readable).
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 10 Jul 2012 19:29:53 +0300
changeset 207 3c96103ced32
parent 206 407f2a82ef26
child 208 9af5606f4e76
Exclude file prefixes from output to dict names shorter (and so more readable).
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; \