aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 1f3e4b9..4052b5a 100644
--- a/Android.mk
+++ b/Android.mk
@@ -33,6 +33,10 @@ ifneq (,$(filter i9300,$(TARGET_DEVICE)))
ipc_device_name := i9300
endif
+ifneq (,$(filter n7100,$(TARGET_DEVICE)))
+ ipc_device_name := n7100
+endif
+
ifeq ($(DEBUG),true)
LOCAL_CFLAGS += -DDEBUG
LOCAL_CFLAGS += -DLOG_STDOUT
@@ -61,7 +65,8 @@ samsung-ipc_files := \
samsung-ipc/device/galaxys2/galaxys2_ipc.c \
samsung-ipc/device/i9300/i9300_ipc.c \
samsung-ipc/device/maguro/maguro_ipc.c \
- samsung-ipc/device/piranha/piranha_ipc.c
+ samsung-ipc/device/piranha/piranha_ipc.c \
+ samsung-ipc/device/n7100/n7100_ipc.c
LOCAL_SRC_FILES := $(samsung-ipc_files)
LOCAL_CFLAGS += -DIPC_DEVICE_NAME=\"$(ipc_device_name)\"