mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2026-03-13 08:00:02 +08:00
12 lines
175 B
Makefile
12 lines
175 B
Makefile
.PHONY: build
|
|
build:
|
|
python3 setup.py build_ext -if
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
find . -name '*.pyc' -delete
|
|
find . -name '__pycache__' -delete
|
|
rm *.so
|
|
python3 setup.py clean
|