mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-10-31 23:37:35 +00:00
ea125c30ea
Change-Id: I184ec79c8fc4d6047146b84bcc935aef129fc7f4
20 lines
342 B
Makefile
20 lines
342 B
Makefile
ifeq ($(BOARD_HAVE_SAMSUNG_WIFI),true)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
macloader.c
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
liblog libutils
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
|
|
|
|
LOCAL_MODULE := macloader
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_VENDOR_MODULE := true
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|