gte/Makefile

17 lines
350 B
Makefile
Raw Permalink Normal View History

test:
2021-07-09 07:54:27 +02:00
go test -cover ./...
2022-10-18 16:58:12 +02:00
service-deploy: test
2022-09-19 14:42:52 +02:00
flyctl deploy
2021-07-09 07:54:27 +02:00
2022-10-18 16:58:12 +02:00
cli-install: test
2021-07-09 07:54:27 +02:00
go build -o gte ./cmd/cli/main.go
mv gte ${HOME}/bin
2022-10-18 16:58:12 +02:00
2022-10-20 08:50:52 +02:00
app-build: test
2022-10-18 16:58:12 +02:00
cd cmd/android-app && fyne package -os android --icon ../../Icon.png --appID nl.ewintr.gte -name gte
mv cmd/android-app/gte.apk .
2022-10-20 08:50:52 +02:00
app-run: test
2022-10-18 16:58:12 +02:00
go run -tags mobile ./cmd/android-app/main.go