Remove useless definitions in Makefile
[linpy.git] / Makefile
index f2f5e9c..7114104 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,6 @@
 NAME=pypol
 
 PYTHON=python3
-PIP=pip3
-VIRTUALENV=pyvenv
 SETUP=$(PYTHON) setup.py
 RM=rm -rf
 
@@ -25,6 +23,5 @@ test: build
 
 .PHONY: clean
 clean:
-       $(RM) build dist MANIFEST venv
-       $(RM) $(NAME).egg-info $(NAME)/_isl.*.so $(NAME)/__pycache__
-       $(RM) tests/__pycache__
+       $(RM) build dist MANIFEST venv $(NAME).egg-info $(NAME)/_islhelper.*.so
+       find . -name __pycache__ | xargs $(RM)