force making stats

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-08-27 19:15:33 +00:00
parent 96d7977711
commit c19b738e74

View File

@ -43,7 +43,7 @@ force-update:
$(RM) wxstd.po
# print out the percentage of the trsnalted strings
stats:
stats: FORCE
@for i in $(WX_LINGUAS); do \
x=`$(MSGFMT) -o /dev/null "$$i.po" 2>&1 | sed -e 's/[,\.]//g' \
-e 's/\([0-9]\+\) translated messages/TR=\1/' \
@ -55,6 +55,8 @@ stats:
echo "$$i.po `expr 100 "*" $$TR / $$TOTAL`% of $$TOTAL strings"; \
done
.PHONY: allpo allmo force-update percentage
FORCE:
.PHONY: allpo allmo force-update percentage FORCE
# $Id$