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:
authorRay Molenkamp <github@lazydodo.com>2021-03-31 14:30:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-31 14:34:11 +0300
commitf02e1a77c93c6fa55d557498da76f0f818418cca (patch)
tree51d175243cbdb2d19f81b7ac0456907aa3dfc4aa /GNUmakefile
parent4d856ecb11866805fa4e9ffb7f7cc7a4930b0d52 (diff)
Makefile: add update_code target
Convenience target for updating the code, skipping SVN. The Python script supports it, but this wasn't exposed in the makefile. Ref D10457
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 3fe1850ca73..3f7804557aa 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -129,7 +129,10 @@ Utilities
Create a compressed archive of the source code.
* update:
- updates git and all submodules
+ Updates git and all submodules and svn.
+
+ * update_code:
+ Updates git and all submodules but not svn.
* format:
Format source code using clang (uses PATHS if passed in). For example::
@@ -522,6 +525,9 @@ icons_geom: .FORCE
update: .FORCE
$(PYTHON) ./build_files/utils/make_update.py
+update_code: .FORCE
+ $(PYTHON) ./build_files/utils/make_update.py --no-libraries
+
format: .FORCE
PATH="../lib/${OS_NCASE}_${CPU}/llvm/bin/:../lib/${OS_NCASE}_centos7_${CPU}/llvm/bin/:../lib/${OS_NCASE}/llvm/bin/:$(PATH)" \
$(PYTHON) source/tools/utils_maintenance/clang_format_paths.py $(PATHS)