San Mehat | a6391f1 | 2010-03-10 12:46:00 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
2 | include $(CLEAR_VARS) | ||||
3 | |||||
4 | ifneq ($(TARGET_SIMULATOR),true) | ||||
5 | |||||
6 | include $(CLEAR_VARS) | ||||
7 | |||||
8 | LOCAL_SRC_FILES := \ | ||||
9 | diskconfig.c \ | ||||
10 | diskutils.c \ | ||||
11 | write_lst.c \ | ||||
12 | config_mbr.c | ||||
13 | |||||
14 | LOCAL_MODULE := libdiskconfig | ||||
San Mehat | a6391f1 | 2010-03-10 12:46:00 -0800 | [diff] [blame] | 15 | LOCAL_SYSTEM_SHARED_LIBRARIES := libcutils liblog libc |
16 | |||||
17 | include $(BUILD_SHARED_LIBRARY) | ||||
18 | |||||
19 | endif # ! TARGET_SIMULATOR |