forked from core/mobile_nebula
13 lines
255 B
Makefile
13 lines
255 B
Makefile
|
111MODULE = on
|
||
|
export GO111MODULE
|
||
|
|
||
|
mobileNebula.aar: *.go
|
||
|
gomobile bind -trimpath -v --target=android
|
||
|
|
||
|
MobileNebula.framework: *.go
|
||
|
gomobile bind -trimpath -v --target=ios
|
||
|
|
||
|
.DEFAULT_GOAL := mobileNebula.aar
|
||
|
|
||
|
all: mobileNebula.aar MobileNebula.framework
|