Makefile: reordered, added rmfiles cmd

This commit is contained in:
DarkCat09 2023-02-08 17:31:25 +04:00
parent b6761c2824
commit 037f017914

View file

@ -1,8 +1,3 @@
clean:
rm -rf __pycache__/
rm -rf .mypy_cache/
rm -f lyrics.txt input
deps:
python3 -m pip install -r requirements.txt
@ -18,6 +13,15 @@ tags:
chmod +x ./id3tag.sh
./id3tag.sh
clean:
rm -rf __pycache__/
rm -rf .mypy_cache/
rm -f lyrics.txt input
rmfiles:
rm -rf files/
rm -rf convert/
pyformat:
python3 -m autopep8 --in-place .*.py