blob: 556868f97bb35840582e773d2d20446422ce9b41 [file] [log] [blame]
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