Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BlenderPhi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
raas
BlenderPhi
Commits
79d69bb9
Commit
79d69bb9
authored
May 20, 2016
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
Makefile: Use hidden FORCE target
parent
ecf534e4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
GNUmakefile
+37
-37
37 additions, 37 deletions
GNUmakefile
with
37 additions
and
37 deletions
GNUmakefile
+
37
−
37
View file @
79d69bb9
...
@@ -120,7 +120,7 @@ endif
...
@@ -120,7 +120,7 @@ endif
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Build Blender
# Build Blender
all
:
FORCE
all
:
.
FORCE
@
echo
@
echo
@
echo
Configuring Blender
in
\"
$(
BUILD_DIR
)
\"
...
@
echo
Configuring Blender
in
\"
$(
BUILD_DIR
)
\"
...
...
@@ -149,13 +149,13 @@ bpy: all
...
@@ -149,13 +149,13 @@ bpy: all
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Configuration (save some cd'ing around)
# Configuration (save some cd'ing around)
config
:
FORCE
config
:
.
FORCE
$(
CMAKE_CONFIG_TOOL
)
"
$(
BUILD_DIR
)
"
$(
CMAKE_CONFIG_TOOL
)
"
$(
BUILD_DIR
)
"
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Help for build targets
# Help for build targets
help
:
FORCE
help
:
.
FORCE
@
echo
""
@
echo
""
@
echo
"Convenience targets provided for building blender, (multiple at once can be used)"
@
echo
"Convenience targets provided for building blender, (multiple at once can be used)"
@
echo
" * debug - build a debug binary"
@
echo
" * debug - build a debug binary"
...
@@ -228,13 +228,13 @@ help: FORCE
...
@@ -228,13 +228,13 @@ help: FORCE
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Packages
# Packages
#
#
package_debian
:
FORCE
package_debian
:
.
FORCE
cd
build_files/package_spec
;
DEB_BUILD_OPTIONS
=
"parallel=
$(
NPROCS
)
"
sh ./build_debian.sh
cd
build_files/package_spec
;
DEB_BUILD_OPTIONS
=
"parallel=
$(
NPROCS
)
"
sh ./build_debian.sh
package_pacman
:
FORCE
package_pacman
:
.
FORCE
cd
build_files/package_spec/pacman
;
MAKEFLAGS
=
"-j
$(
NPROCS
)
"
makepkg
cd
build_files/package_spec/pacman
;
MAKEFLAGS
=
"-j
$(
NPROCS
)
"
makepkg
package_archive
:
FORCE
package_archive
:
.
FORCE
make
-C
"
$(
BUILD_DIR
)
"
-s
package_archive
make
-C
"
$(
BUILD_DIR
)
"
-s
package_archive
@
echo
archive
in
"
$(
BUILD_DIR
)
/release"
@
echo
archive
in
"
$(
BUILD_DIR
)
/release"
...
@@ -242,24 +242,24 @@ package_archive: FORCE
...
@@ -242,24 +242,24 @@ package_archive: FORCE
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Tests
# Tests
#
#
test
:
FORCE
test
:
.
FORCE
cd
$(
BUILD_DIR
)
;
ctest
.
--output-on-failure
cd
$(
BUILD_DIR
)
;
ctest
.
--output-on-failure
# run pep8 check check on scripts we distribute.
# run pep8 check check on scripts we distribute.
test_pep8
:
FORCE
test_pep8
:
.
FORCE
$(
PYTHON
)
tests/python/pep8.py
>
test_pep8.log 2>&1
$(
PYTHON
)
tests/python/pep8.py
>
test_pep8.log 2>&1
@
echo
"written: test_pep8.log"
@
echo
"written: test_pep8.log"
# run some checks on our cmakefiles.
# run some checks on our cmakefiles.
test_cmake
:
FORCE
test_cmake
:
.
FORCE
$(
PYTHON
)
build_files/cmake/cmake_consistency_check.py
>
test_cmake_consistency.log 2>&1
$(
PYTHON
)
build_files/cmake/cmake_consistency_check.py
>
test_cmake_consistency.log 2>&1
@
echo
"written: test_cmake_consistency.log"
@
echo
"written: test_cmake_consistency.log"
# run deprecation tests, see if we have anything to remove.
# run deprecation tests, see if we have anything to remove.
test_deprecated
:
FORCE
test_deprecated
:
.
FORCE
$(
PYTHON
)
tests/check_deprecated.py
$(
PYTHON
)
tests/check_deprecated.py
test_style_c
:
FORCE
test_style_c
:
.
FORCE
# run our own checks on C/C++ style
# run our own checks on C/C++ style
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_style_c.py"
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_style_c.py"
\
...
@@ -267,7 +267,7 @@ test_style_c: FORCE
...
@@ -267,7 +267,7 @@ test_style_c: FORCE
"
$(
BLENDER_DIR
)
/source/creator"
\
"
$(
BLENDER_DIR
)
/source/creator"
\
--no-length-check
--no-length-check
test_style_c_qtc
:
FORCE
test_style_c_qtc
:
.
FORCE
# run our own checks on C/C++ style
# run our own checks on C/C++ style
USE_QTC_TASK
=
1
\
USE_QTC_TASK
=
1
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
...
@@ -280,7 +280,7 @@ test_style_c_qtc: FORCE
...
@@ -280,7 +280,7 @@ test_style_c_qtc: FORCE
@
echo
"written: test_style.tasks"
@
echo
"written: test_style.tasks"
test_style_osl
:
FORCE
test_style_osl
:
.
FORCE
# run our own checks on C/C++ style
# run our own checks on C/C++ style
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_style_c.py"
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_style_c.py"
\
...
@@ -288,7 +288,7 @@ test_style_osl: FORCE
...
@@ -288,7 +288,7 @@ test_style_osl: FORCE
"
$(
BLENDER_DIR
)
/release/scripts/templates_osl"
"
$(
BLENDER_DIR
)
/release/scripts/templates_osl"
test_style_osl_qtc
:
FORCE
test_style_osl_qtc
:
.
FORCE
# run our own checks on C/C++ style
# run our own checks on C/C++ style
USE_QTC_TASK
=
1
\
USE_QTC_TASK
=
1
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
...
@@ -303,13 +303,13 @@ test_style_osl_qtc: FORCE
...
@@ -303,13 +303,13 @@ test_style_osl_qtc: FORCE
# Project Files
# Project Files
#
#
project_qtcreator
:
FORCE
project_qtcreator
:
.
FORCE
$(
PYTHON
)
build_files/cmake/cmake_qtcreator_project.py
"
$(
BUILD_DIR
)
"
$(
PYTHON
)
build_files/cmake/cmake_qtcreator_project.py
"
$(
BUILD_DIR
)
"
project_netbeans
:
FORCE
project_netbeans
:
.
FORCE
$(
PYTHON
)
build_files/cmake/cmake_netbeans_project.py
"
$(
BUILD_DIR
)
"
$(
PYTHON
)
build_files/cmake/cmake_netbeans_project.py
"
$(
BUILD_DIR
)
"
project_eclipse
:
FORCE
project_eclipse
:
.
FORCE
cmake
-G
"Eclipse CDT4 - Unix Makefiles"
-H
"
$(
BLENDER_DIR
)
"
-B
"
$(
BUILD_DIR
)
"
cmake
-G
"Eclipse CDT4 - Unix Makefiles"
-H
"
$(
BLENDER_DIR
)
"
-B
"
$(
BUILD_DIR
)
"
...
@@ -317,40 +317,40 @@ project_eclipse: FORCE
...
@@ -317,40 +317,40 @@ project_eclipse: FORCE
# Static Checking
# Static Checking
#
#
check_cppcheck
:
FORCE
check_cppcheck
:
.
FORCE
$(
CMAKE_CONFIG
)
$(
CMAKE_CONFIG
)
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_cppcheck.py"
2>
\
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_cppcheck.py"
2>
\
"
$(
BLENDER_DIR
)
/check_cppcheck.txt"
"
$(
BLENDER_DIR
)
/check_cppcheck.txt"
@
echo
"written: check_cppcheck.txt"
@
echo
"written: check_cppcheck.txt"
check_clang_array
:
FORCE
check_clang_array
:
.
FORCE
$(
CMAKE_CONFIG
)
$(
CMAKE_CONFIG
)
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_clang_array.py"
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_clang_array.py"
check_splint
:
FORCE
check_splint
:
.
FORCE
$(
CMAKE_CONFIG
)
$(
CMAKE_CONFIG
)
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_splint.py"
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_splint.py"
check_sparse
:
FORCE
check_sparse
:
.
FORCE
$(
CMAKE_CONFIG
)
$(
CMAKE_CONFIG
)
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_sparse.py"
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_sparse.py"
check_smatch
:
FORCE
check_smatch
:
.
FORCE
$(
CMAKE_CONFIG
)
$(
CMAKE_CONFIG
)
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_smatch.py"
$(
PYTHON
)
"
$(
BLENDER_DIR
)
/build_files/cmake/cmake_static_check_smatch.py"
check_spelling_py
:
FORCE
check_spelling_py
:
.
FORCE
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
"
$(
BLENDER_DIR
)
/release/scripts"
"
$(
BLENDER_DIR
)
/release/scripts"
check_spelling_c
:
FORCE
check_spelling_c
:
.
FORCE
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
...
@@ -359,7 +359,7 @@ check_spelling_c: FORCE
...
@@ -359,7 +359,7 @@ check_spelling_c: FORCE
"
$(
BLENDER_DIR
)
/intern/guardedalloc"
\
"
$(
BLENDER_DIR
)
/intern/guardedalloc"
\
"
$(
BLENDER_DIR
)
/intern/ghost"
\
"
$(
BLENDER_DIR
)
/intern/ghost"
\
check_spelling_c_qtc
:
FORCE
check_spelling_c_qtc
:
.
FORCE
cd
"
$(
BUILD_DIR
)
"
;
USE_QTC_TASK
=
1
\
cd
"
$(
BUILD_DIR
)
"
;
USE_QTC_TASK
=
1
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
...
@@ -370,13 +370,13 @@ check_spelling_c_qtc: FORCE
...
@@ -370,13 +370,13 @@ check_spelling_c_qtc: FORCE
>
\
>
\
"
$(
BLENDER_DIR
)
/check_spelling_c.tasks"
"
$(
BLENDER_DIR
)
/check_spelling_c.tasks"
check_spelling_osl
:
FORCE
check_spelling_osl
:
.
FORCE
cd
"
$(
BUILD_DIR
)
"
;
\
cd
"
$(
BUILD_DIR
)
"
;
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
PYTHONIOENCODING
=
utf_8
$(
PYTHON
)
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_spelling.py"
\
"
$(
BLENDER_DIR
)
/intern/cycles/kernel/shaders"
"
$(
BLENDER_DIR
)
/intern/cycles/kernel/shaders"
check_descriptions
:
FORCE
check_descriptions
:
.
FORCE
"
$(
BUILD_DIR
)
/bin/blender"
--background
-noaudio
--factory-startup
--python
\
"
$(
BUILD_DIR
)
/bin/blender"
--background
-noaudio
--factory-startup
--python
\
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_descriptions.py"
"
$(
BLENDER_DIR
)
/source/tools/check_source/check_descriptions.py"
...
@@ -384,14 +384,14 @@ check_descriptions: FORCE
...
@@ -384,14 +384,14 @@ check_descriptions: FORCE
# Utilities
# Utilities
#
#
tgz
:
FORCE
tgz
:
.
FORCE
./build_files/utils/build_tgz.sh
./build_files/utils/build_tgz.sh
icons
:
FORCE
icons
:
.
FORCE
"
$(
BLENDER_DIR
)
/release/datafiles/blender_icons_update.py"
"
$(
BLENDER_DIR
)
/release/datafiles/blender_icons_update.py"
"
$(
BLENDER_DIR
)
/release/datafiles/prvicons_update.py"
"
$(
BLENDER_DIR
)
/release/datafiles/prvicons_update.py"
update
:
FORCE
update
:
.
FORCE
if
[
-d
"../lib"
]
;
then
\
if
[
-d
"../lib"
]
;
then
\
svn update ../lib/
*
;
\
svn update ../lib/
*
;
\
fi
fi
...
@@ -404,23 +404,23 @@ update: FORCE
...
@@ -404,23 +404,23 @@ update: FORCE
#
#
# Simple version of ./doc/python_api/sphinx_doc_gen.sh with no PDF generation.
# Simple version of ./doc/python_api/sphinx_doc_gen.sh with no PDF generation.
doc_py
:
FORCE
doc_py
:
.
FORCE
"
$(
BUILD_DIR
)
/bin/blender"
--background
-noaudio
--factory-startup
--python
doc/python_api/sphinx_doc_gen.py
"
$(
BUILD_DIR
)
/bin/blender"
--background
-noaudio
--factory-startup
--python
doc/python_api/sphinx_doc_gen.py
cd
doc/python_api
;
sphinx-build
-b
html sphinx-in sphinx-out
cd
doc/python_api
;
sphinx-build
-b
html sphinx-in sphinx-out
@
echo
"docs written into: '
$(
BLENDER_DIR
)
/doc/python_api/sphinx-out/contents.html'"
@
echo
"docs written into: '
$(
BLENDER_DIR
)
/doc/python_api/sphinx-out/contents.html'"
doc_doxy
:
FORCE
doc_doxy
:
.
FORCE
cd
doc/doxygen
;
doxygen Doxyfile
cd
doc/doxygen
;
doxygen Doxyfile
@
echo
"docs written into: '
$(
BLENDER_DIR
)
/doc/doxygen/html/index.html'"
@
echo
"docs written into: '
$(
BLENDER_DIR
)
/doc/doxygen/html/index.html'"
doc_dna
:
FORCE
doc_dna
:
.
FORCE
"
$(
BUILD_DIR
)
/bin/blender"
--background
-noaudio
--factory-startup
--python
doc/blender_file_format/BlendFileDnaExporter_25.py
"
$(
BUILD_DIR
)
/bin/blender"
--background
-noaudio
--factory-startup
--python
doc/blender_file_format/BlendFileDnaExporter_25.py
@
echo
"docs written into: '
$(
BLENDER_DIR
)
/doc/blender_file_format/dna.html'"
@
echo
"docs written into: '
$(
BLENDER_DIR
)
/doc/blender_file_format/dna.html'"
doc_man
:
FORCE
doc_man
:
.
FORCE
$(
PYTHON
)
doc/manpage/blender.1.py
"
$(
BUILD_DIR
)
/bin/blender"
$(
PYTHON
)
doc/manpage/blender.1.py
"
$(
BUILD_DIR
)
/bin/blender"
help_features
:
FORCE
help_features
:
.
FORCE
@$(
PYTHON
)
-c
\
@$(
PYTHON
)
-c
\
"import re;
\
"import re;
\
print('
\n
'.join([
\
print('
\n
'.join([
\
...
@@ -431,9 +431,9 @@ help_features: FORCE
...
@@ -431,9 +431,9 @@ help_features: FORCE
if w.startswith('WITH_')]))"
|
uniq
if w.startswith('WITH_')]))"
|
uniq
clean
:
FORCE
clean
:
.
FORCE
$(
MAKE
)
-C
"
$(
BUILD_DIR
)
"
clean
$(
MAKE
)
-C
"
$(
BUILD_DIR
)
"
clean
.PHONY
:
all
.PHONY
:
all
FORCE
:
.
FORCE
:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment