aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-02-19 19:36:29 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2015-02-19 19:36:29 -0500
commitcd875a04df8307e1a06b89e4d0b3a0ebff8ee7cf (patch)
tree13f36a9d61d48b55b2c979e0fcfa0e82d67cd8b6 /makefile
parent77f8db7b41e7e23ea698c815958e31b5801f58bf (diff)
downloadmarkdown-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--makefile14
1 files changed, 14 insertions, 0 deletions
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 <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