mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 06:00:48 +00:00
![Thierry Crozat](/assets/img/avatar_default.png)
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
12 lines
216 B
Makefile
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
|