[RSUTIL] Fix directory handling
[rarslave2.git] / Makefile
index 8590fff..74487a2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ all:
        @echo "Use another target, this has no meaning"
 
 clean:
-       rm -f *.pyc
+       find -name '*.pyc' -exec rm -f '{}' \;
        rm -rf extract_dir
 
 test:
@@ -10,3 +10,5 @@ test:
 
 run: clean
        python rarslave.py
+
+.PHONY: all clean test run