1 LOCAL_PATH:= $(call my-dir) 2 3 # the device command line tool 4 include $(CLEAR_VARS) 5 6 LOCAL_SRC_FILES := genbidi.c store.c 7 8 LOCAL_C_INCLUDES += \ 9 $(LOCAL_PATH)/../toolutil \ 10 $(LOCAL_PATH)/../../common \ 11 $(LOCAL_PATH)/../../i18n 12 13 LOCAL_STATIC_LIBRARIES += libicuuc libicudata libicui18n libicutu 14 15 ifneq ($(TARGET_ARCH),arm) 16 LOCAL_LDLIBS += -lpthread -ldl -licudata 17 endif 18 19 LOCAL_CFLAGS := 20 21 LOCAL_MODULE := genbidi 22 23 # the host command line tool 24 25 include $(BUILD_HOST_EXECUTABLE) 26