From 7bb4a47d77b7c09319a82c42948c6b385fd3b81d Mon Sep 17 00:00:00 2001 From: Joerie de Gram Date: Wed, 17 Aug 2011 23:00:35 +0200 Subject: Massive cleanup & device specific frame handling - Introduced device specific frame handling - Removed all IPC command helper functions - General cleanup --- Android.mk | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'Android.mk') 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) + -- cgit v1.1