diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-09-02 17:19:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 16:19:35 +0100 |
commit | 21109e19834ad852e54daef7c7729b535e2241ba (patch) | |
tree | 31b1fcee81b502970e04203b10447fad5c029f2a /Makefile | |
parent | ad796eb4be9877712c0034d291a082cee1fd2dec (diff) | |
download | candle-21109e19834ad852e54daef7c7729b535e2241ba.tar.gz candle-21109e19834ad852e54daef7c7729b535e2241ba.tar.bz2 candle-21109e19834ad852e54daef7c7729b535e2241ba.zip |
Recommend using maturin. (#717)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -1,14 +1,4 @@ -pyo3-test: - cargo build --profile=release-with-debug --package candle-pyo3 - cp -f ./target/release-with-debug/libcandle.so candle.so - PYTHONPATH=.:$PYTHONPATH python3 candle-pyo3/test.py - -pyo3-test-macos: - cargo build --profile=release-with-debug --package candle-pyo3 - cp -f ./target/release-with-debug/libcandle.dylib candle.so - PYTHONPATH=.:$PYTHONPATH python3 candle-pyo3/test.py - -.PHONY: pyo3-test pyo3-test-macos clean-ptx clean test +.PHONY: clean-ptx clean test clean-ptx: find target -name "*.ptx" -type f -delete |