test_ok1/Makefile

14 lines
227 B
Makefile
Raw Normal View History

# create virtual environment
PYTHON = python2.7
.env:
virtualenv .env -p $(PYTHON)
# install all needed for development
develop: .env
.env/bin/pip install -e . tox
# clean the development envrironment
clean:
-rm -rf .env