mirror of
https://github.com/reactos/syzkaller.git
synced 2025-03-07 02:57:18 +00:00
19 lines
256 B
Makefile
19 lines
256 B
Makefile
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
|