Files
mysqlclient/Makefile
Inada Naoki 713d3625f8 fixup docs
2019-11-19 17:29:03 +09:00

17 lines
248 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:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
rm *.so
python3 setup.py clean