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-08-16 14:01:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-16 14:01:19 +0400
commit989f67f5228b5b92f91d39818b29571f8ed8ec24 (patch)
tree77472c8a983f0b4539c6da9e0a8e73e3bdff5dd0 /GNUmakefile
parent93f135cfda5d8f9872e241920d24786af5d64bee (diff)
'make help' message for the convenience makefile which lists optional targets.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index efdb9e05e28..7b705e66750 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -126,4 +126,24 @@ test_deprecated:
clean:
$(MAKE) -C $(BUILD_DIR) clean
+help:
+ @echo ""
+ @echo "Convenience targets provided for building blender, (multiple at once can be used)"
+ @echo " * debug - build a debug binary"
+ @echo " * lite - disable non essential features for a smaller binary and faster build"
+ @echo " * headless - build without an interface (renderfarm or server automation)"
+ @echo " * bpy - build as a python module which can be loaded from python directly"
+ @echo ""
+ @echo "Package Targets"
+ @echo " * package_debian - build a debian package"
+ @echo " * package_pacman - build an arch linux pacmanpackage"
+ @echo " * package_archive - build an archive package"
+ @echo ""
+ @echo "Testing Targets (not assosiated with building blender)"
+ @echo " * test - run ctest, currently tests import/export, operator execution and that python modules load"
+ @echo " * test_cmake - runs our own cmake file checker which detects errors in the cmake file list definitions"
+ @echo " * test_pep8 - checks all python script are pep8 which are tagged to use the stricter formatting"
+ @echo " * test_deprecated - checks for deprecation tags in our code which may need to be removed"
+ @echo ""
+
.PHONY: all