Thierry Crozat c89462c2a6 i18n: Implement po file parsing in create_translations tool
Until now the parsing was done by the po2c perl script, which
generated a messages.h file. The create_translations executable
had then to be recompiled before being executed. This commit
removes the po2c perl script. The parsing is now directly done by
the create_translations tool.

The parsing has also been extended to support the msgctxt strings.
This is not dumped yet in translations.dat but will be once I have
finished implementing context support for the translations.

svn-id: r52284
2010-08-22 18:49:19 +00:00

12 lines
216 B
Makefile

MODULE := tools/create_translations
MODULE_OBJS := \
po_parser.o \
create_translations.o
# Set the name of the executable
TOOL_EXECUTABLE := create_translations
# Include common rules
include $(srcdir)/rules.mk