mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-08-08 11:57:34 +08:00
20 lines
415 B
Makefile
20 lines
415 B
Makefile
## Automate common development tasks
|
|
|
|
|
|
.PHONY: default
|
|
defalt: ffmpeg/detect.json
|
|
|
|
|
|
.tox/py37/bin/python:
|
|
tox -e py37
|
|
touch "$(@)"
|
|
|
|
.tox/py37/lib/python3.7/site-packages/pandas: .tox/py37/bin/python
|
|
.tox/py37/bin/pip install requests lxml pandas
|
|
touch "$(@)"
|
|
|
|
.PHONY: ffmpeg/detect.json
|
|
ffmpeg/detect.json: .tox/py37/lib/python3.7/site-packages/pandas
|
|
.tox/py37/bin/python examples/get_detect_data.py >"$(@)"
|
|
|