1
0
mirror of https://github.com/taigrr/crocgui synced 2025-01-18 04:03:16 -08:00
crocgui/Makefile
2021-02-13 18:59:14 -06:00

14 lines
260 B
Makefile

.PHONY: clean all
all: crocgui.apk crocgui
crocgui.apk: main.go platforms_android.go AndroidManifest.xml
fyne package -os android -appID com.github.howeyc.crocgui -icon logo.png
crocgui: main.go platforms-all.go
go build
clean:
go clean
rm crocgui.apk