155:eafed0b93f8e
Anton Shestakov <av6@dwimlabs.net>, Tue, 31 Oct 2017 12:09:26 +0800
Makefile: add simple targets

next change 156:ae3c941a4ebb

Makefile

Permissions: -rw-r--r--

Other formats: Feeds:
pip := ./venv/bin/pip install -r REQUIREMENTS
.PHONY: all
all: tests
.PHONY: devel
devel: venv
$(pip)
venv:
virtualenv venv
venv/bin/python: | venv
$(pip)
.PHONY: tests
tests: venv/bin/python
./venv/bin/python ./test.py
.PHONY: check
check: tests