summaryrefslogtreecommitdiffstats
path: root/sdcard/Android.mk
blob: 4630db97c96938d65678f2897723cc8ac39a1011 (plain)
1
2
3
4
5
6
7
8
9
10
11
LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

LOCAL_SRC_FILES:= sdcard.c
LOCAL_MODULE:= sdcard
LOCAL_CFLAGS := -Wall -Wno-unused-parameter

LOCAL_SHARED_LIBRARIES := libc libcutils

include $(BUILD_EXECUTABLE)