Add support for Join sets where the parity protects the split files
[rarslave2.git] / Makefile
index 8590fff..9016061 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,8 @@ test:
 
 run: clean
        python rarslave.py
+
+sdist:
+       python setup.py sdist
+
+.PHONY: all clean test run