X-Git-Url: https://www.irasnyder.com/gitweb/?p=rarslave2.git;a=blobdiff_plain;f=Makefile;h=74487a2bfa9c98374f5ebc792ee41e7396115116;hp=6cef507582fc23c5a35752bd606b93047b98dde2;hb=005129118bcc031f57c57d39ba8b05ed1842c47c;hpb=aebb7adb2c800b1efc7c7d1877a16609cfe76b65 diff --git a/Makefile b/Makefile index 6cef507..74487a2 100644 --- 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