summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2024-09-24 14:28:42 +0800
committerPeng Wu <alexepico@gmail.com>2024-09-24 14:28:42 +0800
commit53cc359bb90f2c50e818297ff43e8e36c6a57310 (patch)
treec12df2ae9f9123e76d6bb7efff70798f5760d58d
parente9e43af7cfbc1fed9d4ff4f5166f2ce6dbc06c22 (diff)
downloadlibpinyin-53cc359bb90f2c50e818297ff43e8e36c6a57310.tar.gz
libpinyin-53cc359bb90f2c50e818297ff43e8e36c6a57310.tar.xz
libpinyin-53cc359bb90f2c50e818297ff43e8e36c6a57310.zip
Update src/storage/Makefile.am
-rw-r--r--src/storage/Makefile.am14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/storage/Makefile.am b/src/storage/Makefile.am
index b64b9ea..f5022c5 100644
--- a/src/storage/Makefile.am
+++ b/src/storage/Makefile.am
@@ -61,7 +61,10 @@ noinst_HEADERS = chewing_enum.h \
facade_phrase_table3.h \
table_info.h \
bdb_utils.h \
- kyotodb_utils.h
+ kyotodb_utils.h \
+ punct_table.h \
+ punct_table_bdb.h \
+ punct_table_kyotodb.h
noinst_LIBRARIES = libstorage.a
@@ -77,16 +80,19 @@ libstorage_a_SOURCES = phrase_index.cpp \
phonetic_key_matrix.cpp \
chewing_large_table.cpp \
chewing_large_table2.cpp \
- table_info.cpp
+ table_info.cpp \
+ punct_table.cpp
if BERKELEYDB
libstorage_a_SOURCES += ngram_bdb.cpp \
phrase_large_table3_bdb.cpp \
- chewing_large_table2_bdb.cpp
+ chewing_large_table2_bdb.cpp \
+ punct_table_bdb.cpp
endif
if KYOTOCABINET
libstorage_a_SOURCES += ngram_kyotodb.cpp \
phrase_large_table3_kyotodb.cpp \
- chewing_large_table2_kyotodb.cpp
+ chewing_large_table2_kyotodb.cpp \
+ punct_table_kyotodb.cpp
endif