1 LOCAL_PATH := $(call my-dir) 2 include $(CLEAR_VARS) 3 4 ifeq ($(TARGET_USE_DISKINSTALLER),true) 5 6 LOCAL_SRC_FILES := \ 7 installer.c 8 9 LOCAL_C_INCLUDES := $(LOCAL_PATH)/libdiskconfig 10 11 LOCAL_CFLAGS := -O2 -g -W -Wall -Werror 12 13 LOCAL_MODULE := diskinstaller 14 LOCAL_MODULE_TAGS := optional 15 16 LOCAL_STATIC_LIBRARIES := $(TARGET_DISK_CONFIG_LIB) 17 LOCAL_SYSTEM_SHARED_LIBRARIES := \ 18 libdiskconfig \ 19 libcutils \ 20 liblog \ 21 libc 22 23 include $(BUILD_EXECUTABLE) 24 25 include $(call first-makefiles-under,$(LOCAL_PATH)) 26 endif 27 28