mirror of
https://github.com/taigrr/crocgui
synced 2025-01-18 04:03:16 -08:00
14 lines
357 B
Makefile
14 lines
357 B
Makefile
.PHONY: clean all
|
|
|
|
all: crocgui.apk crocgui
|
|
|
|
crocgui.apk: main.go send.go recv.go settings.go about.go AndroidManifest.xml
|
|
ANDROID_HOME=~/android ./fyne-uri-name/fyne package -os android -appID com.github.howeyc.crocgui -icon metadata/en-US/images/icon.png
|
|
|
|
crocgui: main.go send.go recv.go settings.go about.go
|
|
go build
|
|
|
|
clean:
|
|
go clean
|
|
rm crocgui.apk
|