Home | History | Annotate | Download | only in libwnnDictionary
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 #----------------------------------------------------------------------
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_MODULE_TAGS := optional
      7 
      8 LOCAL_MODULE := libwnndict
      9 
     10 LOCAL_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 
     22 LOCAL_SHARED_LIBRARIES += libdl
     23 
     24 LOCAL_STATIC_LIBRARIES := 
     25 
     26 LOCAL_C_INCLUDES += \
     27 	$(JNI_H_INCLUDE) \
     28 	$(LOCAL_PATH)/include $(LOCAL_PATH)
     29 
     30 LOCAL_CFLAGS += \
     31 	 -O
     32 
     33 include $(BUILD_SHARED_LIBRARY)
     34