mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
13 lines
251 B
Makefile
13 lines
251 B
Makefile
# create virtual environment
|
|
PYTHON = python2.7
|
|
|
|
.env:
|
|
virtualenv .env -p $(PYTHON)
|
|
|
|
# install all needed for development
|
|
develop: .env
|
|
.env/bin/pip install -e . -r dev_requirements.txt tox
|
|
|
|
# clean the development envrironment
|
|
clean:
|
|
-rm -rf .env
|