Makefile: reordered, added rmfiles cmd
This commit is contained in:
parent
b6761c2824
commit
037f017914
1 changed files with 9 additions and 5 deletions
14
Makefile
14
Makefile
|
@ -1,8 +1,3 @@
|
||||||
clean:
|
|
||||||
rm -rf __pycache__/
|
|
||||||
rm -rf .mypy_cache/
|
|
||||||
rm -f lyrics.txt input
|
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
|
||||||
|
@ -18,6 +13,15 @@ tags:
|
||||||
chmod +x ./id3tag.sh
|
chmod +x ./id3tag.sh
|
||||||
./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:
|
pyformat:
|
||||||
python3 -m autopep8 --in-place .*.py
|
python3 -m autopep8 --in-place .*.py
|
||||||
|
|
||||||
|
|
Reference in a new issue