Merge pull request #288 from pre-commit/all-repos_autofix_rm-makefile

Remove (unused) Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644
index b38b1ae..0000000
--- a/Makefile
+++ /dev/null
@@ -1,24 +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
diff --git a/tox.ini b/tox.ini
index d0863eb..06c3588 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,4 @@
 [tox]
-project = pre_commit_hooks
 # These should match the travis env list
 envlist = py27,py35,py36,pypy
 
@@ -18,10 +17,6 @@
     pre-commit install -f --install-hooks
     pre-commit run --all-files
 
-[testenv:venv]
-envdir = venv-{[tox]project}
-commands =
-
 [flake8]
 max-line-length=131