33 lines
631 B
Makefile
33 lines
631 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
#----------------------------------------------------------------------
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE := libwnndict
|
|
|
|
LOCAL_SRC_FILES := \
|
|
OpenWnnDictionaryImplJni.c \
|
|
engine/ndapi.c \
|
|
engine/neapi.c \
|
|
engine/ndbdic.c \
|
|
engine/ndfdic.c \
|
|
engine/ndldic.c \
|
|
engine/ndrdic.c \
|
|
engine/necode.c \
|
|
engine/ndcommon.c \
|
|
engine/nj_str.c
|
|
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
|
|
LOCAL_STATIC_LIBRARIES :=
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
$(JNI_H_INCLUDE) \
|
|
$(LOCAL_PATH)/include $(LOCAL_PATH)
|
|
|
|
LOCAL_CFLAGS += \
|
|
-O -Wno-unused-parameter -Werror
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|