aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJoerie de Gram <j.de.gram@gmail.com>2011-08-17 23:00:35 +0200
committerJoerie de Gram <j.de.gram@gmail.com>2011-08-17 23:00:35 +0200
commit7bb4a47d77b7c09319a82c42948c6b385fd3b81d (patch)
tree45c5c83de2b402458f2ccceee81cbdd88e001931 /Android.mk
parent4dea3cd4bbc899a88715b752e8201a4ee9e5b65b (diff)
downloadexternal_libsamsung-ipc-7bb4a47d77b7c09319a82c42948c6b385fd3b81d.zip
external_libsamsung-ipc-7bb4a47d77b7c09319a82c42948c6b385fd3b81d.tar.gz
external_libsamsung-ipc-7bb4a47d77b7c09319a82c42948c6b385fd3b81d.tar.bz2
Massive cleanup & device specific frame handling
- Introduced device specific frame handling - Removed all IPC command helper functions - General cleanup
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk25
1 files changed, 17 insertions, 8 deletions
diff --git a/Android.mk b/Android.mk
index 4235cd5..f856eab 100644
--- a/Android.mk
+++ b/Android.mk
@@ -2,20 +2,29 @@ LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
libsamsung-ipc_files := \
- radio.c \
+ ipc.c \
+ ipc_util.c \
util.c \
- hexdump.c \
- call.c \
- sim.c \
- sms.c \
- net.c \
- misc.c
+ devices/$(TARGET_DEVICE)/ipc.c
LOCAL_MODULE := libsamsung-ipc
LOCAL_MODULE_TAGS := optional
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
-
LOCAL_SRC_FILES := $(libsamsung-ipc_files)
+
include $(BUILD_STATIC_LIBRARY)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := ipc-test
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SHARED_LIBRARIES := libutils
+
+LOCAL_CFLAGS := -DLOG_STDOUT
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
+LOCAL_SRC_FILES := $(libsamsung-ipc_files) test.c
+
+include $(BUILD_EXECUTABLE)
+