Makefile: update code-layout checking target

Rename check_wiki_file_structure to check_docs_file_structure and
call updated script.
This commit is contained in:
Campbell Barton 2024-02-03 13:11:50 +11:00
parent 635409bfe2
commit 170b69cc5f
1 changed files with 4 additions and 4 deletions

View File

@ -73,8 +73,8 @@ Static Source Code Checking
Documentation Checking
* check_wiki_file_structure:
Check the WIKI documentation for the source-tree's file structure
* check_docs_file_structure:
Check the documentation for the source-tree's file structure
matches Blender's source-code.
See: https://developer.blender.org/docs/features/code_layout/
@ -503,9 +503,9 @@ check_clang_array: .FORCE
check_mypy: .FORCE
@$(PYTHON) "$(BLENDER_DIR)/tools/check_source/check_mypy.py"
check_wiki_file_structure: .FORCE
check_docs_file_structure: .FORCE
@PYTHONIOENCODING=utf_8 $(PYTHON) \
"$(BLENDER_DIR)/tools/check_wiki/check_wiki_file_structure.py"
"$(BLENDER_DIR)/tools/check_docs/check_docs_code_layout.py"
check_spelling_py: .FORCE
@PYTHONIOENCODING=utf_8 $(PYTHON) \