1 # -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*-
4 # ##### BEGIN GPL LICENSE BLOCK #####
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software Foundation,
18 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 # ##### END GPL LICENSE BLOCK #####
22 # This Makefile does an out-of-source CMake build in ../build_`OS`_`CPU`
25 # This is for users who like to configure & build blender with a single command.
30 OS_NCASE:=$(shell uname -s | tr '[A-Z]' '[a-z]')
31 # CPU:=$(shell uname -m) # UNUSED
34 # Source and Build DIR's
35 BLENDER_DIR:=$(shell pwd -P)
38 ifndef BUILD_CMAKE_ARGS
43 BUILD_DIR:=$(shell dirname $(BLENDER_DIR))/build_$(OS_NCASE)
47 # -----------------------------------------------------------------------------
48 # additional targets for the build configuration
50 # support 'make debug'
51 ifneq "$(findstring debug, $(MAKECMDGOALS))" ""
52 BUILD_DIR:=$(BUILD_DIR)_debug
55 ifneq "$(findstring lite, $(MAKECMDGOALS))" ""
56 BUILD_DIR:=$(BUILD_DIR)_lite
57 BUILD_CMAKE_ARGS:=$(BUILD_CMAKE_ARGS) -C$(BLENDER_DIR)/build_files/cmake/config/blender_lite.cmake
59 ifneq "$(findstring headless, $(MAKECMDGOALS))" ""
60 BUILD_DIR:=$(BUILD_DIR)_bpy
61 BUILD_CMAKE_ARGS:=$(BUILD_CMAKE_ARGS) -C$(BLENDER_DIR)/build_files/cmake/config/blender_headless.cmake
63 ifneq "$(findstring bpy, $(MAKECMDGOALS))" ""
64 BUILD_DIR:=$(BUILD_DIR)_bpy
65 BUILD_CMAKE_ARGS:=$(BUILD_CMAKE_ARGS) -C$(BLENDER_DIR)/build_files/cmake/config/bpy_module.cmake
69 # -----------------------------------------------------------------------------
70 # Get the number of cores for threaded build
73 NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
76 NPROCS:=$(shell sysctl -a | grep "hw.ncpu " | cut -d" " -f3)
79 NPROCS:=$(shell sysctl -a | grep "hw.ncpu " | cut -d" " -f3 )
82 NPROCS:=$(shell sysctl -a | grep "hw.ncpu " | cut -d" " -f3 )
86 # -----------------------------------------------------------------------------
87 # Macro for configuring cmake
89 CMAKE_CONFIG = cmake $(BUILD_CMAKE_ARGS) \
92 -DCMAKE_BUILD_TYPE:STRING=$(BUILD_TYPE)
95 # -----------------------------------------------------------------------------
96 # Tool for 'make config'
100 CMAKE_CONFIG_TOOL = cmake-gui
102 CMAKE_CONFIG_TOOL = ccmake
106 # -----------------------------------------------------------------------------
110 @echo Configuring Blender ...
112 # if test ! -f $(BUILD_DIR)/CMakeCache.txt ; then \
116 # do this always incase of failed initial build, could be smarter here...
120 @echo Building Blender ...
121 $(MAKE) -C $(BUILD_DIR) -s -j $(NPROCS) install
123 @echo edit build configuration with: "$(BUILD_DIR)/CMakeCache.txt" run make again to rebuild.
124 @echo blender installed, run from: "$(BUILD_DIR)/bin/blender"
133 # -----------------------------------------------------------------------------
134 # Configuration (save some cd'ing around)
136 $(CMAKE_CONFIG_TOOL) $(BUILD_DIR)
139 # -----------------------------------------------------------------------------
140 # Help for build targets
143 @echo "Convenience targets provided for building blender, (multiple at once can be used)"
144 @echo " * debug - build a debug binary"
145 @echo " * lite - disable non essential features for a smaller binary and faster build"
146 @echo " * headless - build without an interface (renderfarm or server automation)"
147 @echo " * bpy - build as a python module which can be loaded from python directly"
149 @echo " * config - run cmake configuration tool to set build options"
151 @echo " Note, passing the argument 'BUILD_DIR=path' when calling make will override the default build dir."
152 @echo " Note, passing the argument 'BUILD_CMAKE_ARGS=args' lets you add cmake arguments."
155 @echo "Project Files for IDE's"
156 @echo " * project_qtcreator - QtCreator Project Files"
157 @echo " * project_netbeans - NetBeans Project Files"
158 @echo " * project_eclipse - Eclipse CDT4 Project Files"
160 @echo "Package Targets"
161 @echo " * package_debian - build a debian package"
162 @echo " * package_pacman - build an arch linux pacmanpackage"
163 @echo " * package_archive - build an archive package"
165 @echo "Testing Targets (not associated with building blender)"
166 @echo " * test - run ctest, currently tests import/export, operator execution and that python modules load"
167 @echo " * test_cmake - runs our own cmake file checker which detects errors in the cmake file list definitions"
168 @echo " * test_pep8 - checks all python script are pep8 which are tagged to use the stricter formatting"
169 @echo " * test_deprecated - checks for deprecation tags in our code which may need to be removed"
170 @echo " * test_style_c - checks C/C++ conforms with blenders style guide: http://wiki.blender.org/index.php/Dev:Doc/CodeStyle"
171 @echo " * test_style_c_qtc - same as test_style but outputs QtCreator tasks format"
172 @echo " * test_style_osl - checks OpenShadingLanguage conforms with blenders style guide: http://wiki.blender.org/index.php/Dev:Doc/CodeStyle"
173 @echo " * test_style_osl_qtc - checks OpenShadingLanguage conforms with blenders style guide: http://wiki.blender.org/index.php/Dev:Doc/CodeStyle"
175 @echo "Static Source Code Checking (not associated with building blender)"
176 @echo " * check_cppcheck - run blender source through cppcheck (C & C++)"
177 @echo " * check_clang_array - run blender source through clang array checking script (C & C++)"
178 @echo " * check_splint - run blenders source through splint (C only)"
179 @echo " * check_sparse - run blenders source through sparse (C only)"
180 @echo " * check_smatch - run blenders source through smatch (C only)"
181 @echo " * check_spelling_c - check for spelling errors (OSL only)"
182 @echo " * check_spelling_c_qtc - same as check_spelling_c but outputs QtCreator tasks format"
183 @echo " * check_spelling_osl - check for spelling errors (C/C++ only)"
184 @echo " * check_spelling_py - check for spelling errors (Python only)"
186 @echo "Utilities (not associated with building blender)"
187 @echo " * tbz - create a compressed svn export 'blender_archive.tar.bz2'"
189 @echo "Documentation Targets (not associated with building blender)"
190 @echo " * doc_py - generate sphinx python api docs"
191 @echo " * doc_doxy - generate doxygen C/C++ docs"
192 @echo " * doc_dna - generate blender file format reference"
193 @echo " * doc_man - generate manpage"
196 # -----------------------------------------------------------------------------
200 cd build_files/package_spec ; DEB_BUILD_OPTIONS="parallel=$(NPROCS)" sh ./build_debian.sh
203 cd build_files/package_spec/pacman ; MAKEFLAGS="-j$(NPROCS)" makepkg --asroot
206 make -C $(BUILD_DIR) -s package_archive
207 @echo archive in "$(BUILD_DIR)/release"
210 # -----------------------------------------------------------------------------
214 cd $(BUILD_DIR) ; ctest . --output-on-failure
216 # run pep8 check check on scripts we distribute.
218 python3 source/tests/pep8.py > test_pep8.log 2>&1
219 @echo "written: test_pep8.log"
221 # run some checks on our cmakefiles.
223 python3 build_files/cmake/cmake_consistency_check.py > test_cmake_consistency.log 2>&1
224 @echo "written: test_cmake_consistency.log"
226 # run deprecation tests, see if we have anything to remove.
228 python3 source/tests/check_deprecated.py
231 # run our own checks on C/C++ style
232 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/check_style_c.py $(BLENDER_DIR)/source/blender $(BLENDER_DIR)/source/creator --no-length-check
235 # run our own checks on C/C++ style
237 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/check_style_c.py $(BLENDER_DIR)/source/blender $(BLENDER_DIR)/source/creator --no-length-check > \
239 @echo "written: test_style.tasks"
243 # run our own checks on C/C++ style
244 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/check_style_c.py $(BLENDER_DIR)/intern/cycles/kernel/shaders
248 # run our own checks on C/C++ style
250 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/check_style_c.py $(BLENDER_DIR)/intern/cycles/kernel/shaders > \
252 @echo "written: test_style.tasks"
254 # -----------------------------------------------------------------------------
259 python3 build_files/cmake/cmake_qtcreator_project.py $(BUILD_DIR)
262 python3 build_files/cmake/cmake_netbeans_project.py $(BUILD_DIR)
265 cmake -G"Eclipse CDT4 - Unix Makefiles" -H$(BLENDER_DIR) -B$(BUILD_DIR)
268 # -----------------------------------------------------------------------------
275 python3 $(BLENDER_DIR)/build_files/cmake/cmake_static_check_cppcheck.py 2> \
276 $(BLENDER_DIR)/check_cppcheck.txt
277 @echo "written: check_cppcheck.txt"
282 python3 $(BLENDER_DIR)/build_files/cmake/cmake_static_check_clang_array.py
287 python3 $(BLENDER_DIR)/build_files/cmake/cmake_static_check_splint.py
292 python3 $(BLENDER_DIR)/build_files/cmake/cmake_static_check_sparse.py
297 python3 $(BLENDER_DIR)/build_files/cmake/cmake_static_check_smatch.py
301 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/spell_check_source.py $(BLENDER_DIR)/release/scripts
305 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/spell_check_source.py $(BLENDER_DIR)/source
307 check_spelling_c_qtc:
308 cd $(BUILD_DIR) ; USE_QTC_TASK=1 \
309 PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/spell_check_source.py $(BLENDER_DIR)/source > \
310 $(BLENDER_DIR)/check_spelling_c.tasks
313 cd $(BUILD_DIR) ; PYTHONIOENCODING=utf_8 python3 $(BLENDER_DIR)/source/tools/spell_check_source.py $(BLENDER_DIR)/intern/cycles/kernel/shaders
315 # -----------------------------------------------------------------------------
320 svn export . blender_archive
321 tar cjf blender_archive.tar.bz2 blender_archive/
322 rm -rf blender_archive/
323 @echo "blender_archive.tar.bz2 written"
326 # -----------------------------------------------------------------------------
330 # Simple version of ./doc/python_api/sphinx_doc_gen.sh with no PDF generation.
332 $(BUILD_DIR)/bin/blender --background -noaudio --factory-startup --python doc/python_api/sphinx_doc_gen.py
333 cd doc/python_api ; sphinx-build -b html sphinx-in sphinx-out
334 @echo "docs written into: '$(BLENDER_DIR)/doc/python_api/sphinx-out/contents.html'"
337 cd doc/doxygen; doxygen Doxyfile
338 @echo "docs written into: '$(BLENDER_DIR)/doc/doxygen/html/index.html'"
341 $(BUILD_DIR)/bin/blender --background -noaudio --factory-startup --python doc/blender_file_format/BlendFileDnaExporter_25.py
342 @echo "docs written into: '$(BLENDER_DIR)/doc/blender_file_format/dna.html'"
345 python3 doc/manpage/blender.1.py $(BUILD_DIR)/bin/blender
349 $(MAKE) -C $(BUILD_DIR) clean