diff --git a/Makefile b/Makefile index d6b16e2d8..c5c899bba 100644 --- a/Makefile +++ b/Makefile @@ -31,25 +31,6 @@ endif .PHONY: build force mesabuild pdf style stylereport hook test batchtest cover clean distclean theming -help: - @echo "Please use \`make ' where is one of" - @echo " build for a standard build" - @echo " clean remove generated and compiled files" - @echo " cover create an html coverage report of unittests" - @echo " debug for a debug build (with -g)" - @echo " dist-clean clean then use 'git clean'" - @echo " force for a forced build (with -f)" - @echo " hook add Pep-8 checking as a git precommit hook" - @echo " html to make standalone HTML files" - @echo " install run a setup.py install" - @echo " mesabuild for a build with MesaGL" - @echo " style to check Python code for style hints." - @echo " style-report make html version of style hints" - @echo " test run unittests (nosetests)" - @echo " theming create a default theme atlas" - @echo " " - @echo "You can also 'cd doc && make help' to build more documentation types" - build: $(PYTHON) setup.py $(BUILD_OPTS) @@ -136,3 +117,22 @@ endif theming: $(PYTHON) -m kivy.atlas kivy/data/images/defaulttheme 512 kivy/tools/theming/defaulttheme/*.png + +help: + @echo "Please use \`make ' where is one of" + @echo " build for a standard build" + @echo " clean remove generated and compiled files" + @echo " cover create an html coverage report of unittests" + @echo " debug for a debug build (with -g)" + @echo " dist-clean clean then use 'git clean'" + @echo " force for a forced build (with -f)" + @echo " hook add Pep-8 checking as a git precommit hook" + @echo " html to make standalone HTML files" + @echo " install run a setup.py install" + @echo " mesabuild for a build with MesaGL" + @echo " style to check Python code for style hints." + @echo " style-report make html version of style hints" + @echo " test run unittests (nosetests)" + @echo " theming create a default theme atlas" + @echo " " + @echo "You can also 'cd doc && make help' to build more documentation types"