mobile_nebula/nebula/Makefile

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

22 lines
527 B
Makefile
Raw Normal View History

2020-07-27 20:43:58 +00:00
111MODULE = on
export GO111MODULE
unexport SWIFT_DEBUG_INFORMATION_VERSION
unexport SWIFT_DEBUG_INFORMATION_FORMAT
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
gomobile bind -trimpath -v --target=android -androidapi=26
2020-07-27 20:43:58 +00:00
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