aboutsummaryrefslogtreecommitdiffstats
path: root/tools/android/Makefile
blob: 556868f97bb35840582e773d2d20446422ce9b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
TARGET := libs/arm64-v8a/sandbox_test
SRC := jni/sandbox_test.c

all: $(TARGET)

$(TARGET): $(SRC)
	ndk-build

push: $(TARGET)
	adb push "$^" /data/local/tmp

run: push
	adb shell /data/local/tmp/sandbox_test

clean:
	rm -rf libs obj

.PHONY: all push run