Python world uses setup.py for everything so our Makefile is just a
"convenience" wrapper for people using to type 'make'. Remove it as it
doesn't add that much value and would need to be updated for python 3.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
Makefile | 18 ------------------
1 file changed, 18 deletions(-)
delete mode 100644 Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 6c8da0a..0000000
--- a/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# Shim wrapper around setup.py to allow for familiar build targets
-
-PYTHON ?= python
-
-all:
- $(PYTHON) setup.py build
-
-install: all
- $(PYTHON) setup.py install
-
-clean:
- $(PYTHON) setup.py clean
-
-check: all
- $(PYTHON) setup.py test
-
-rpm:
- $(PYTHON) setup.py rpm
--
2.23.0