Makefile
This commit is contained in:
parent
0930d20224
commit
426bd118aa
1 changed files with 22 additions and 0 deletions
22
Makefile
Normal file
22
Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
clean:
|
||||
rm -rf __pycache__/
|
||||
rm -f lyrics.txt input
|
||||
|
||||
run:
|
||||
chmod +x ./autoytdlp.sh
|
||||
./autoytdlp.sh
|
||||
|
||||
conv:
|
||||
chmod +x ./convert.sh
|
||||
./convert.sh
|
||||
|
||||
tags:
|
||||
chmod +x ./id3tag.sh
|
||||
./id3tag.sh
|
||||
|
||||
pyformat:
|
||||
python3 -m autopep8 --in-place ./*.py
|
||||
|
||||
pycheck:
|
||||
python3 -m mypy ./*.py
|
||||
python3 -m pylint -j $(nproc) ./*.py
|
Reference in a new issue