From cd875a04df8307e1a06b89e4d0b3a0ebff8ee7cf Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Thu, 19 Feb 2015 19:36:29 -0500 Subject: Add 'help' command to makefile I can never remember the names of the subcommands. A 'help' subcommand is an easy assistant for the future. --- makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/makefile b/makefile index 3945db6..0ed1dba 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,19 @@ # Python-Markdown makefile +.PHONY : help +help: + @echo 'Usage: make ' + @echo '' + @echo 'Subcommands:' + @echo ' install Install Python-Markdown locally' + @echo ' deploy Register and upload a new release to PyPI' + @echo ' build Build a source distribution' + @echo ' build-win Build a Windows exe distribution' + @echo ' docs Build documentation' + @echo ' test Run all tests' + @echo ' update-tests Generate html files for updated text files in tests' + @echo ' clean Clean up the source directories' + .PHONY : install install: python setup.py install -- cgit v1.2.3