diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2015-02-19 19:36:29 -0500 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2015-02-19 19:36:29 -0500 |
commit | cd875a04df8307e1a06b89e4d0b3a0ebff8ee7cf (patch) | |
tree | 13f36a9d61d48b55b2c979e0fcfa0e82d67cd8b6 /makefile | |
parent | 77f8db7b41e7e23ea698c815958e31b5801f58bf (diff) | |
download | markdown-cd875a04df8307e1a06b89e4d0b3a0ebff8ee7cf.tar.gz markdown-cd875a04df8307e1a06b89e4d0b3a0ebff8ee7cf.tar.bz2 markdown-cd875a04df8307e1a06b89e4d0b3a0ebff8ee7cf.zip |
Add 'help' command to makefile
I can never remember the names of the subcommands. A 'help' subcommand
is an easy assistant for the future.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,5 +1,19 @@ # Python-Markdown makefile +.PHONY : help +help: + @echo 'Usage: make <subcommand>' + @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 |