Skip to content

Commit 1d58dab

Browse files
committed
add help to Makefile
1 parent 0340455 commit 1d58dab

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Get the version of the app. This is used in the doc build.
22
export VERSION=$(shell python setup.py --version)
33

4-
# Default target is to build the source distribution.
4+
# Default target is to show help
5+
help:
6+
@echo "sdist - Source distribution"
7+
@echo "html - HTML documentation"
8+
@echo "register - register a new release on PyPI"
9+
@echo "website - build web version of docs"
10+
@echo "installwebsite - deploy web version of docs"
11+
@echo "develop - install development version"
12+
13+
514
.PHONY: sdist
615
sdist: html
716
python setup.py sdist

0 commit comments

Comments
 (0)