[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39439] trunk/blender/GNUmakefile: ' make help' message for the convenience makefile which lists optional targets.

Campbell Barton ideasman42 at gmail.com
Tue Aug 16 12:01:20 CEST 2011


Revision: 39439
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39439
Author:   campbellbarton
Date:     2011-08-16 10:01:19 +0000 (Tue, 16 Aug 2011)
Log Message:
-----------
'make help' message for the convenience makefile which lists optional targets.

Modified Paths:
--------------
    trunk/blender/GNUmakefile

Modified: trunk/blender/GNUmakefile
===================================================================
--- trunk/blender/GNUmakefile	2011-08-16 09:36:15 UTC (rev 39438)
+++ trunk/blender/GNUmakefile	2011-08-16 10:01:19 UTC (rev 39439)
@@ -126,4 +126,24 @@
 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




More information about the Bf-blender-cvs mailing list