22 lines
422 B
Makefile
22 lines
422 B
Makefile
.PHONY: all fetch anki shorthand technical test clean
|
|
|
|
all: fetch anki shorthand technical
|
|
|
|
fetch:
|
|
python3 amateurfunk_fetch.py
|
|
|
|
anki:
|
|
python3 amateurfunk_anki.py
|
|
|
|
shorthand:
|
|
python3 amateurfunk_shorthand.py
|
|
|
|
technical:
|
|
python3 amateurfunk_technical.py
|
|
|
|
test:
|
|
python3 -m unittest test_amateurfunk_fetch test_amateurfunk_anki test_amateurfunk_shorthand test_amateurfunk_technical
|
|
|
|
clean:
|
|
rm -rf data anki __pycache__
|