普通文本  |  28行  |  495 B

LOCAL_PATH:= $(call my-dir)

# the device command line tool
include $(CLEAR_VARS)

LOCAL_SRC_FILES := makeconv.c gencnvex.c genmbcs.c ucnvstat.c

LOCAL_C_INCLUDES +=            \
	$(LOCAL_PATH)/../toolutil  \
	$(LOCAL_PATH)/../../common \
	$(LOCAL_PATH)/../../i18n

LOCAL_STATIC_LIBRARIES := libicutu libicuuc libicui18n

ifneq ($(TARGET_ARCH),arm)
LOCAL_LDLIBS += -lpthread -ldl
endif

LOCAL_CFLAGS :=

LOCAL_MODULE := makeconv


# the host command line tool


include $(BUILD_HOST_EXECUTABLE)