Updated makefiles
This commit is contained in:
parent
c072f2dbfb
commit
70442c3d98
8
Makefile
8
Makefile
|
@ -3,6 +3,8 @@ devapk:
|
||||||
|
|
||||||
apk:
|
apk:
|
||||||
make -C sbapp apk
|
make -C sbapp apk
|
||||||
|
mkdir -p ./dist
|
||||||
|
cp sbapp/bin/sideband-*-release.apk ./dist/
|
||||||
|
|
||||||
install:
|
install:
|
||||||
make -C sbapp install
|
make -C sbapp install
|
||||||
|
@ -23,4 +25,8 @@ cleanall: clean cleanbuildozer
|
||||||
build_wheel:
|
build_wheel:
|
||||||
python3 setup.py sdist bdist_wheel
|
python3 setup.py sdist bdist_wheel
|
||||||
|
|
||||||
release: build_wheel apk
|
release: build_wheel apk
|
||||||
|
|
||||||
|
upload:
|
||||||
|
@echo Uploading to PyPi...
|
||||||
|
twine upload dist/sbapp-*
|
Loading…
Reference in New Issue