Skip to content
Snippets Groups Projects
Commit 322b9fdc authored by Tristan Matthews's avatar Tristan Matthews
Browse files

Makefile: add local.properties, fix clean

parent ccf51e3d
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
APP=bin/SFLPhoneHome-debug.apk
all: $(APP)
$(APP):
./make_swig.sh
all: local.properties
ndk-build -C jni -j4
ant debug
local.properties:
android update project -p .
# You may want to specify a device with -s SERIAL NUMBER
install: $(APP)
adb install -r $^
clean:
rm -rf libs obj
rm -rf obj
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment