mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-01-18 19:27:05 +00:00
12 lines
269 B
Makefile
12 lines
269 B
Makefile
111MODULE = on
|
|
export GO111MODULE
|
|
|
|
mobileNebula.aar: *.go go.sum
|
|
gomobile bind -trimpath -v --target=android
|
|
|
|
MobileNebula.framework: *.go go.sum
|
|
gomobile bind -trimpath -v --target=ios
|
|
|
|
.DEFAULT_GOAL := mobileNebula.aar
|
|
|
|
all: mobileNebula.aar MobileNebula.framework
|