Sync upstream

This commit is contained in:
Mark Qvist 2025-11-24 15:28:32 +01:00
commit 514b5e7ae6
15 changed files with 634 additions and 61 deletions

View file

@ -2,8 +2,9 @@ all: release
clean:
@echo Cleaning...
-rm -r ./build
-rm -r ./dist
-sudo rm -rf ./build
-rm -rf ./dist
-rm -r ./LXST/__pycache__
remove_symlinks:
@echo Removing symlinks for build...
@ -18,7 +19,19 @@ create_symlinks:
-ln -s ../LXST/ ./examples/LXST
build_wheel:
cp ./lib/0.4.2/* ./LXST/
python3 setup.py sdist bdist_wheel
-(rm ./LXST/*.so)
-(rm ./LXST/*.dll)
-(rm ./LXST/*.dylib)
native_libs:
./march_build.sh
persist_libs:
-cp ./libs/dev/*.so ./libs/static/
-cp ./libs/dev/*.dll ./libs/static/
-cp ./libs/dev/*.dylib ./libs/static/
release: remove_symlinks build_wheel create_symlinks