diff options
| author | Peng Wu <alexepico@gmail.com> | 2025-11-13 16:21:31 +0800 |
|---|---|---|
| committer | Peng Wu <alexepico@gmail.com> | 2025-11-13 16:21:31 +0800 |
| commit | 9545d64291450b2e3ac03e270280d66275292719 (patch) | |
| tree | 8459f36b6d451bfd290f8f975c15264df775a1a1 /src | |
| parent | 76c73f61285a0e0dfc80a733bf9c83a27c7be638 (diff) | |
| download | libpinyin-9545d64291450b2e3ac03e270280d66275292719.tar.gz libpinyin-9545d64291450b2e3ac03e270280d66275292719.tar.xz libpinyin-9545d64291450b2e3ac03e270280d66275292719.zip | |
Update Makefile.am
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 6 | ||||
| -rw-r--r-- | src/storage/Makefile.am | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 8625f2d..241f1a4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -73,6 +73,12 @@ pinyin_SOURCES += storage/ngram_kyotodb.cpp \ storage/punct_table_kyotodb.cpp endif +if TKRZW +pinyin_SOURCES += storage/ngram_tkrzwdb.cpp \ + storage/phrase_large_table3_tkrzwdb.cpp \ + storage/chewing_large_table2_tkrzwdb.cpp \ + storage/punct_table_tkrzwdb.cpp +endif noinst_HEADERS = pinyin_internal.h diff --git a/src/storage/Makefile.am b/src/storage/Makefile.am index f5022c5..0fcce47 100644 --- a/src/storage/Makefile.am +++ b/src/storage/Makefile.am @@ -37,13 +37,16 @@ noinst_HEADERS = chewing_enum.h \ phrase_large_table3.h \ phrase_large_table3_bdb.h \ phrase_large_table3_kyotodb.h \ + phrase_large_table3_tkrzwdb.h \ ngram.h \ ngram_bdb.h \ ngram_kyotodb.h \ + ngram_tkrzwdb.h \ flexible_ngram.h \ flexible_single_gram.h \ flexible_ngram_bdb.h \ flexible_ngram_kyotodb.h \ + flexible_ngram_tkrzwdb.h \ tag_utility.h \ pinyin_parser_table.h \ special_table.h \ @@ -55,6 +58,7 @@ noinst_HEADERS = chewing_enum.h \ chewing_large_table2.h \ chewing_large_table2_bdb.h \ chewing_large_table2_kyotodb.h \ + chewing_large_table2_tkrzwdb.h \ facade_chewing_table.h \ facade_chewing_table2.h \ facade_phrase_table2.h \ @@ -96,3 +100,10 @@ libstorage_a_SOURCES += ngram_kyotodb.cpp \ chewing_large_table2_kyotodb.cpp \ punct_table_kyotodb.cpp endif + +if TKRZW +libstorage_a_SOURCES += ngram_tkrzwdb.cpp \ + phrase_large_table3_tkrzwdb.cpp \ + chewing_large_table2_tkrzwdb.cpp \ + punct_table_tkrzwdb.cpp +endif |
