]> git.saurik.com Git - wxWidgets.git/commitdiff
force making stats
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 27 Aug 2002 19:15:33 +0000 (19:15 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 27 Aug 2002 19:15:33 +0000 (19:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

locale/Makefile

index fdfbb89490df8d63f4ba358497f56fc4e00c62eb..bd9212aae62abc479f2d9ff37f2bef80b6a5a4e7 100644 (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$