Merge branch 'makefile' of dan/ui into master
the build was successful Details

This commit is contained in:
Sarah Jamie Lewis 2019-10-22 08:37:14 -07:00 committed by Gogs
commit 121a62c142
1 changed files with 14 additions and 2 deletions

View File

@ -1,7 +1,19 @@
all:
.PHONY: linux android
default: all
default: linux
all: clean linux android
linux:
go mod download
qtdeploy build linux | pv
android:
go mod download
go mod vendor
qtdeploy -docker build android | pv
clean:
rm -r vendor || true
find -iname "moc*" | xargs rm
find -iname "rcc*" | xargs rm