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>2011-04-10 14:45:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-10 14:45:56 +0400
commit28594bc742e6a1cab95659283394cfee487822c9 (patch)
tree8d9c7f0b7d7302586bcaf517c3d296be79b9a2ee /GNUmakefile
parent1c6956a4d6b15ddca3588f1838d3b9903e7239af (diff)
minor pep8 edits, also added 'test_pep8' & 'test_cmake' to the GNUmakefile for convenience.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 42d7c33e46b..73d5c267705 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -98,6 +98,16 @@ package_archive:
test:
cd $(BUILD_DIR) ; ctest . --output-on-failure
+# run pep8 check check on scripts we distribute.
+test_pep8:
+ python source/tests/pep8.py > test_pep8.log 2>&1
+ @echo "written: test_pep8.log"
+
+# run some checks on our cmakefiles.
+test_cmake:
+ python build_files/cmake/cmake_consistency_check.py > test_cmake_consistency.log 2>&1
+ @echo "written: test_cmake_consistency.txt"
+
clean:
cd $(BUILD_DIR) ; make clean