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