| Brian Swetland | 03ee947 | 2010-08-12 18:01:08 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) | 
| 2 | |||||
| 3 | include $(CLEAR_VARS) | ||||
| 4 | |||||
| 5 | LOCAL_SRC_FILES:= sdcard.c | ||||
| 6 | LOCAL_MODULE:= sdcard | ||||
| Jeff Brown | 6249b90 | 2012-05-26 14:32:54 -0700 | [diff] [blame] | 7 | LOCAL_CFLAGS := -Wall -Wno-unused-parameter | 
| Brian Swetland | 03ee947 | 2010-08-12 18:01:08 -0700 | [diff] [blame] | 8 | |
| 9 | LOCAL_SHARED_LIBRARIES := libc | ||||
| 10 | |||||
| 11 | include $(BUILD_EXECUTABLE) | ||||