summaryrefslogtreecommitdiffstats
path: root/wifiloader/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'wifiloader/Android.mk')
-rw-r--r--wifiloader/Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/wifiloader/Android.mk b/wifiloader/Android.mk
new file mode 100644
index 0000000..15c9dc2
--- /dev/null
+++ b/wifiloader/Android.mk
@@ -0,0 +1,17 @@
+ifeq ($(BOARD_HAVE_SAMSUNG_WIFI),true)
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ wifiloader.c
+
+LOCAL_SHARED_LIBRARIES := \
+ liblog libutils
+
+LOCAL_MODULE := wifiloader
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_EXECUTABLE)
+
+endif