The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | ifneq ($(TARGET_SIMULATOR),true) |
2 | |||||
3 | LOCAL_PATH:= $(call my-dir) | ||||
4 | include $(CLEAR_VARS) | ||||
5 | |||||
6 | LOCAL_SRC_FILES:= \ | ||||
7 | installd.c commands.c utils.c | ||||
8 | |||||
9 | LOCAL_C_INCLUDES := \ | ||||
10 | $(call include-path-for, system-core)/cutils | ||||
11 | |||||
12 | LOCAL_SHARED_LIBRARIES := \ | ||||
13 | libcutils | ||||
14 | |||||
15 | LOCAL_STATIC_LIBRARIES := | ||||
16 | |||||
17 | LOCAL_MODULE:= installd | ||||
18 | |||||
19 | include $(BUILD_EXECUTABLE) | ||||
20 | |||||
21 | endif # !simulator)) |