Files
mysqlclient/Makefile
2023-05-21 02:03:59 +09:00

21 lines
287 B
Makefile

.PHONY: build
build:
python setup.py build_ext -if
.PHONY: doc
doc:
pip install .
pip install sphinx
cd doc && make html
.PHONY: clean
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
rm -rf build
.PHONY: check
check:
ruff *.py src ci
black *.py src ci