Remove (unused) Makefile

Committed via https://github.com/asottile/all-repos
This commit is contained in:
Anthony Sottile 2018-05-23 17:36:23 -07:00
parent 884e78e255
commit f57958a9d0

View file

@ -1,26 +0,0 @@
REBUILD_FLAG =
.PHONY: all
all: venv test
.PHONY: venv
venv: .venv.touch
tox -e venv $(REBUILD_FLAG)
.PHONY: tests test
tests: test
test: .venv.touch
tox $(REBUILD_FLAG)
.venv.touch: setup.py requirements-dev.txt
$(eval REBUILD_FLAG := --recreate)
touch .venv.touch
.PHONY: clean
clean:
find . -name '*.pyc' -delete
rm -rf .tox
rm -rf ./venv-*
rm -f .venv.touch