Update of /cvsroot/sharedaemon/ui-wx/src/lang
In directory sc8-pr-cvs1:/tmp/cvs-serv28703
Added Files:
Makefile
Log Message:
Makefile for languages catalogs compilation.
--- NEW FILE: Makefile ---
all:
@echo Updating language catalogs...;
@xgettext -k'_:1' ../*.cpp ../*.h -o empty.po;
# @sed 's/CHARSET/iso-8859-1/' empty.po > empty.po;
@msgmerge Estonian.po empty.po -o Estonian.po 2> /dev/null;
@msgmerge French.po empty.po -o French.po 2> /dev/null;
@msgmerge German.po empty.po -o German.po 2> /dev/null;
@msgmerge Spanish.po empty.po -o Spanish.po 2> /dev/null;
@echo Compiling language catalogs...;
@msgfmt Estonian.po -o Estonian.mo;
@msgfmt French.po -o French.mo;
@msgfmt German.po -o German.mo;
@msgfmt Spanish.po -o Spanish.mo;
clean:
@echo Cleaning up language catalogs...;
@rm -f Estonian.mo French.mo German.mo Spanish.mo;
|