3
0
Fork 0
trifid_mobile/nebula/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
431 B
Makefile
Raw Permalink Normal View History

2020-07-27 20:43:58 +00:00
111MODULE = on
export GO111MODULE
clean:
rm -rf mobileNebula.aar MobileNebula.xcframework
2021-06-08 15:10:21 +00:00
mobileNebula.aar: *.go go.sum
go get -d golang.org/x/mobile/cmd/gomobile
2020-07-27 20:43:58 +00:00
gomobile bind -trimpath -v --target=android
MobileNebula.xcframework: *.go go.sum
go get -d golang.org/x/mobile/cmd/gomobile
gomobile bind -trimpath -v -target=ios
2020-07-27 20:43:58 +00:00
.DEFAULT_GOAL := mobileNebula.aar
.PHONY: clean
2020-07-27 20:43:58 +00:00
all: mobileNebula.aar MobileNebula.framework