aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJoerie de Gram <j.de.gram@gmail.com>2011-07-28 17:28:40 +0200
committerJoerie de Gram <j.de.gram@gmail.com>2011-07-28 17:45:37 +0200
commiteb964932d2708ee1bae9bdae493a4cfc5e59da5d (patch)
treebbc626802de5bddf2fe68ceb64ec03f19a52be52 /Android.mk
parent6e47b9ecdbe6732482123073aebea221b674917f (diff)
downloadexternal_libsamsung-ipc-eb964932d2708ee1bae9bdae493a4cfc5e59da5d.zip
external_libsamsung-ipc-eb964932d2708ee1bae9bdae493a4cfc5e59da5d.tar.gz
external_libsamsung-ipc-eb964932d2708ee1bae9bdae493a4cfc5e59da5d.tar.bz2
Cleanup, preliminary calling/sms support
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk20
1 files changed, 20 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..57109b7
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,20 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+libmsm-h1_files := \
+ radio.c \
+ util.c \
+ hexdump.c \
+ call.c \
+ sms.c \
+ net.c \
+ misc.c
+
+LOCAL_MODULE := libmsm-h1
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
+
+LOCAL_SRC_FILES := $(libmsm-h1_files)
+include $(BUILD_STATIC_LIBRARY)
+