diff options
Diffstat (limited to 'wifi/Android.mk')
-rw-r--r-- | wifi/Android.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wifi/Android.mk b/wifi/Android.mk new file mode 100644 index 0000000..8876a2b --- /dev/null +++ b/wifi/Android.mk @@ -0,0 +1,11 @@ +LOCAL_PATH:= $(call my-dir) + +ifeq ($(strip $(BOARD_HAS_QCOM_WLAN)),true) +include $(CLEAR_VARS) +LOCAL_MODULE := readmac +LOCAL_MODULE_TAGS := optional +LOCAL_SRC_FILES := zuk_readmac.c +LOCAL_CFLAGS += -Wall +LOCAL_SHARED_LIBRARIES := libc libcutils libutils liblog +include $(BUILD_EXECUTABLE) +endif |