From c19b738e74e01e7301aec7815b5bac9782b3c9db Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 27 Aug 2002 19:15:33 +0000 Subject: [PATCH] force making stats git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- locale/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/locale/Makefile b/locale/Makefile index fdfbb89490..bd9212aae6 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -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$