1
0
mirror of https://github.com/taigrr/crocgui synced 2025-01-18 04:03:16 -08:00
crocgui/Makefile
2021-04-30 16:34:52 -05:00

14 lines
288 B
Makefile

.PHONY: clean all
all: crocgui.apk crocgui
crocgui.apk: main.go send.go recv.go settings.go about.go AndroidManifest.xml fdroid-build.sh
ANDROID_HOME=~/android bash fdroid-build.sh test
crocgui: main.go send.go recv.go settings.go about.go
go build
clean:
go clean
rm crocgui.apk