This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/packages/pypi/Makefile

15 lines
238 B
Makefile
Raw Normal View History

2018-02-08 16:02:32 -08:00
bdist:
cd ../../; cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=DEBUG
cmake --build build
2018-02-08 16:02:32 -08:00
cp ../../bin/lib/*.a .
python3 setup.py bdist_wheel
upload:
twine upload dist/*
clean:
rm -rf *.a
rm -rf build
rm -rf dist
rm -rf libzt.egg-info