makefile updates with linux and android targets and go mod support
the build was successful Papildu informācija

This commit is contained in:
Dan Ballard 2019-10-08 11:02:34 -07:00
vecāks 1773e52cbd
revīzija 3fd5755ed9
1 mainīti faili ar 14 papildinājumiem un 2 dzēšanām

Parādīt failu

@ -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