2019-10-06 15:29:38 +02:00

10 lines
167 B
Makefile

.PHONY: build clean
build: .venv
.venv:
`which python3` -m venv $(CURDIR)/.venv
$(CURDIR)/.venv/bin/pip install -r requirements.txt
clean:
rm -rf $(CURDIR)/.venv