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>2018-04-24 13:08:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-24 13:09:31 +0300
commit24bde1ca43f6b3d87fcc4603c218aa442b6af779 (patch)
tree218752b069f2ffb3f5f3052b9b7d60f2d6d833d1 /GNUmakefile
parent67f23cff53922561604920650a2025ba6771f2c1 (diff)
Add "make icons_geom" convenience target
Generates icons from the blend file in lib.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 46f0fa18eec..3817e6b3e5c 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -236,9 +236,10 @@ help: .FORCE
@echo " * check_descriptions - check for duplicate/invalid descriptions"
@echo ""
@echo "Utilities (not associated with building blender)"
- @echo " * icons - updates PNG icons from SVG files."
- @echo " * tgz - create a compressed archive of the source code."
- @echo " * update - updates git and all submodules"
+ @echo " * icons - updates PNG icons from SVG files."
+ @echo " * icons_geom - updates Geometry icons from BLEND file."
+ @echo " * tgz - create a compressed archive of the source code."
+ @echo " * update - updates git and all submodules"
@echo ""
@echo "Environment Variables"
@echo " * BUILD_CMAKE_ARGS - arguments passed to CMake."
@@ -423,6 +424,10 @@ icons: .FORCE
"$(BLENDER_DIR)/release/datafiles/blender_icons_update.py"
"$(BLENDER_DIR)/release/datafiles/prvicons_update.py"
+icons_geom: .FORCE
+ BLENDER_BIN="$(BUILD_DIR)/bin/blender" \
+ "$(BLENDER_DIR)/release/datafiles/blender_icons_geom_update.py"
+
update: .FORCE
if [ "$(OS_NCASE)" == "darwin" ] && [ ! -d "../lib/$(OS_NCASE)" ]; then \
svn checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/$(OS_NCASE) ../lib/$(OS_NCASE) ; \