summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2019-08-13 17:22:38 -0700
committerMatt Clay <matt@mystile.com>2019-08-13 20:32:16 -0700
commitf0d32a2de0ee3e858f9f0f69414a0d6d7fcf5c49 (patch)
tree10a1e4d808e0104cc6b1fdf0c8d9a2fee4e1ab87 /Makefile
parent737a500a30f3cfd87f3a71ab76e8355610bd1c81 (diff)
downloadansible-f0d32a2de0ee3e858f9f0f69414a0d6d7fcf5c49.tar.gz
Remove old Makefile targets.
- `pep8` - There is no need to give it more prominent placement than other sanity tests. - `pyflakes` - The project only makes use of `pylint` and `pycodestyle`. Having the target implies that it should work. - `loc` - Not used. Easily run manually if needed.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index f07746d778..8c0919d169 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,6 @@
# make deb ------------------ produce a DEB
# make docs ----------------- rebuild the manpages (results are checked in)
# make tests ---------------- run the tests (see https://docs.ansible.com/ansible/devel/dev_guide/testing_units.html for requirements)
-# make pyflakes, make pep8 -- source code checks
########################################################
# variable section
@@ -172,18 +171,6 @@ authors:
%.1: %.1.rst lib/ansible/release.py
$(ASCII2MAN)
-.PHONY: loc
-loc:
- sloccount lib library bin
-
-.PHONY: pep8
-pep8:
- $(ANSIBLE_TEST) sanity --test pep8 --python $(PYTHON_VERSION) $(TEST_FLAGS)
-
-.PHONY: pyflakes
-pyflakes:
- pyflakes lib/ansible/*.py lib/ansible/*/*.py bin/*
-
.PHONY: clean
clean:
@echo "Cleaning up distutils stuff"