Update comments for consistency with their targets

This commit is contained in:
Jonathan Barratt 2017-04-06 07:59:17 +07:00
parent 9531b9649a
commit b87a30c1c8
No known key found for this signature in database
GPG Key ID: C007F833B47313DA

View File

@ -17,12 +17,12 @@ help:
@egrep -o "^#: (.+)" [Mm]akefile | sed 's/#: /* /' @egrep -o "^#: (.+)" [Mm]akefile | sed 's/#: /* /'
#: develop - Install minimal development utilities for Python3 #: develop - Install minimal development utilities for Python3.
.PHONY: develop .PHONY: develop
develop: develop:
$(PIP) install -e . $(PIP) install -e .
#: develop - Install minimal development utilities for Python2 #: develop2 - Install minimal development utilities for Python2.
.PHONY: develop2 .PHONY: develop2
develop2: develop2:
pip2 install -e . pip2 install -e .
@ -62,7 +62,7 @@ test:
$(TOX) $(TOX)
#: documentation - Build documentation (Sphinx, README, ...) #: documentation - Build documentation (Sphinx, README, ...).
.PHONY: documentation .PHONY: documentation
documentation: sphinx readme documentation: sphinx readme
@ -93,7 +93,7 @@ demo:
demodesk loaddata emailtemplate.json demodesk loaddata emailtemplate.json
demodesk loaddata demo.json demodesk loaddata demo.json
#: demo - Setup demo project using Python2. #: demo2 - Setup demo project using Python2.
.PHONY: demo2 .PHONY: demo2
demo2: demo2:
pip2 install -e . pip2 install -e .
@ -108,12 +108,12 @@ demo2:
demodesk loaddata demo.json demodesk loaddata demo.json
#: runserver - Run demo server using Python3 #: rundemo - Run demo server using Python3.
.PHONY: rundemo .PHONY: rundemo
rundemo: demo rundemo: demo
demodesk runserver 8080 demodesk runserver 8080
#: runserver - Run demo server using Python2 #: rundemo2 - Run demo server using Python2.
.PHONY: rundemo2 .PHONY: rundemo2
rundemo2: demo2 rundemo2: demo2
demodesk runserver 8080 demodesk runserver 8080