mirror of
https://github.com/markqvist/LXST.git
synced 2026-04-27 22:25:41 +00:00
Sync upstream
This commit is contained in:
parent
61a452c6df
commit
514b5e7ae6
15 changed files with 634 additions and 61 deletions
17
Makefile
17
Makefile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue