Advertisement
4javier

Untitled

Mar 11th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. LOCAL_PATH := $(call my-dir)
  2.  
  3. include $(CLEAR_VARS)
  4.  
  5. ifeq ($(strip $(MTK_SHARED_SDCARD)),true)
  6. LOCAL_CFLAGS += -DMTK_SHARED_SDCARD
  7. endif
  8.  
  9. LOCAL_SRC_FILES := sdcard.c
  10. LOCAL_C_INCLUDES := $(LOCAL_PATH)/../logwrapper/include
  11. LOCAL_MODULE := sdcard
  12. LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror
  13.  
  14. LOCAL_SHARED_LIBRARIES := libc libcutils
  15. LOCAL_STATIC_LIBRARIES := liblogwrap
  16.  
  17. include $(BUILD_EXECUTABLE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement