Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-20 21:07:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-20 21:07:33 +0400
commit8cf8fd7326f0961bad2cd633092fccbcadf0cc92 (patch)
treed3ea45fcf0ea4a6a242a5c942a06caf01fac6d55 /GNUmakefile
parent9d1b4b63b33b77505f4399a4db4f462f5b1fd1eb (diff)
- translation scripts now run with py3.x
- added convenience make target 'make translations' - some MEM_malloc strings were not unique enough, expanded them.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index d587668cf0c..1c8bb0f82a9 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -130,6 +130,10 @@ help:
@echo " * package_pacman - build an arch linux pacmanpackage"
@echo " * package_archive - build an archive package"
@echo ""
+ @echo "Other Targets"
+ @echo " * translations - update blenders translation files in po/"
+ # TODO, doxygen and sphinx docs
+ @echo ""
@echo "Testing Targets (not assosiated with building blender)"
@echo " * test - run ctest, currently tests import/export, operator execution and that python modules load"
@echo " * test_cmake - runs our own cmake file checker which detects errors in the cmake file list definitions"
@@ -157,6 +161,15 @@ package_archive:
# -----------------------------------------------------------------------------
+# Other Targets
+#
+translations:
+ python3 po/update_pot.py
+ python3 po/update_po.py
+ python3 po/update_mo.py
+
+
+# -----------------------------------------------------------------------------
# Tests
#
test: