aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Makefile: remove argument "--upgrade" from pip3Aaron LI2016-10-151-1/+1
|
* Makefile: Fix quotationAaron LI2016-10-141-2/+2
| | | | | | | Do not quote Make variables, since Make does NOT understand or parse single- or double-quote characters in any way. Credit: http://stackoverflow.com/a/23332194
* Makefile: Add one liner to get the value of any variableAaron LI2016-10-141-0/+7
| | | | | | Handy liner to help debugging Makefile. Credit: http://blog.jgc.org/2015/04/the-one-line-you-should-add-to-every.html
* Integrate pytest for test support.Aaron LI2016-10-041-3/+3
| | | | | | Credits: * http://doc.pytest.org/en/latest/goodpractices.html * https://github.com/kennethreitz/requests/blob/master/setup.py
* Makefile: Add --upgrade to pip3 and add a creditAaron LI2016-10-041-1/+3
|
* Makefile: Add variable "VENV" to control virtualenvAaron LI2016-10-031-8/+18
| | | | | | | * The variable "VENV" (default: "venv") defines the virtualenv name and can be override by the environment. * Add "devbuild" target to menu. * Remove the "--user" argument to fix the pip install problem.
* Rewrite the Makefile to add virtualenv support.Aaron LI2016-09-301-7/+23
| | | | Thanks: http://blog.bottlepy.org/2012/07/16/virtualenv-and-makefiles.html
* Setup package structuresAaron LI2016-09-201-0/+10
Credit: https://github.com/kennethreitz/samplemod TODO: Add the 'docs' part