1LOCAL_PATH:= $(call my-dir) 2 3#---------------------------------------------------------------------- 4include $(CLEAR_VARS) 5 6LOCAL_MODULE_TAGS := optional 7 8LOCAL_MODULE := libwnndict 9 10LOCAL_SRC_FILES := \ 11 OpenWnnDictionaryImplJni.c \ 12 engine/ndapi.c \ 13 engine/neapi.c \ 14 engine/ndbdic.c \ 15 engine/ndfdic.c \ 16 engine/ndldic.c \ 17 engine/ndrdic.c \ 18 engine/necode.c \ 19 engine/ndcommon.c \ 20 engine/nj_str.c 21 22LOCAL_SHARED_LIBRARIES += libdl 23 24LOCAL_STATIC_LIBRARIES := 25 26LOCAL_C_INCLUDES += \ 27 $(JNI_H_INCLUDE) \ 28 $(LOCAL_PATH)/include $(LOCAL_PATH) 29 30LOCAL_CFLAGS += \ 31 -O -Wno-unused-parameter -Werror 32 33include $(BUILD_SHARED_LIBRARY) 34