mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-16 12:27:03 +08:00
17 lines
253 B
Makefile
17 lines
253 B
Makefile
.PHONY: build
|
|
build:
|
|
python3 setup.py build_ext -if
|
|
|
|
.PHONY: doc
|
|
doc:
|
|
pip install .
|
|
pip install sphinx
|
|
cd doc && make html
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
python3 setup.py clean
|
|
find . -name '*.pyc' -delete
|
|
find . -name '__pycache__' -delete
|
|
rm -rf build
|