summaryrefslogtreecommitdiffstats
path: root/android-utils/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'android-utils/makefile')
-rw-r--r--android-utils/makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/android-utils/makefile b/android-utils/makefile
new file mode 100644
index 0000000..4f1f360
--- /dev/null
+++ b/android-utils/makefile
@@ -0,0 +1,20 @@
+include ../android-projects/root.mk
+
+ifeq ($(BT), shared)
+all:
+ ($(MAKE) -f droid-makefile all; \
+ $(STRIP) --strip-all --remove-section=.comment --remove-section=.note ./lib$(PROJECT)_$(MARCH).$(EXT); \
+ cp -f ./lib$(PROJECT)_$(MARCH).$(EXT) $(OUTPUT_DIR); \
+ )
+else
+all:
+ ($(MAKE) -f droid-makefile all; cp -f lib$(PROJECT)_$(MARCH).$(EXT) $(OUTPUT_DIR))
+endif
+
+clean:
+ ($(MAKE) -f droid-makefile clean)
+
+
+gdbserver:
+ $(ANDROID_SDK_ROOT)/tools/adb forward tcp:1234: tcp:1234
+ $(ANDROID_SDK_ROOT)/tools/adb shell $(EXEC_DIR)/gdbserver :1234 $(EXEC_DIR)/test \ No newline at end of file
OpenPOWER on IntegriCloud