Major Update
[rarslave2.git] / Makefile
1 all:
2         @echo "Use another target, this has no meaning"
3
4 clean:
5         find -name '*.pyc' -exec rm -f '{}' \;
6         rm -rf extract_dir
7
8 test:
9         python rarslave-test.py
10
11 run: clean
12         python rarslave.py
13
14 sdist:
15         python setup.py sdist
16
17 .PHONY: all clean test run