f184f54466
Change-Id: I110063f39b02da979f97d29e9cb4f5b295de0311
11 lines
222 B
Makefile
11 lines
222 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := sdcard.c
|
|
LOCAL_MODULE := sdcard
|
|
LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils
|
|
|
|
include $(BUILD_EXECUTABLE)
|