blob: fb51e125e785afa84a85ac559bc74fb9f774acb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
## Makefile.am -- Process this file with automake to produce Makefile.in
## Copyright (C) 2007 Peng Wu
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
INCLUDES = -I$(top_srcdir)/src/include \
-I$(top_srcdir)/src/storage \
@GLIB2_CFLAGS@
libpinyinincludedir = $(includedir)/libpinyin-@VERSION@
libpinyininclude_HEADERS= pinyin_custom2.h
noinst_HEADERS = chewing_enum.h \
chewing_key.h \
pinyin_parser2.h \
zhuyin_parser2.h \
phrase_index.h \
phrase_index_logger.h \
phrase_large_table2.h \
phrase_large_table3.h \
ngram.h \
ngram_bdb.h \
ngram_kyotodb.h \
flexible_ngram.h \
flexible_single_gram.h \
flexible_ngram_bdb.h \
flexible_ngram_kyotodb.h \
tag_utility.h \
pinyin_parser_table.h \
double_pinyin_table.h \
zhuyin_table.h \
pinyin_phrase2.h \
pinyin_phrase3.h \
chewing_large_table.h \
facade_chewing_table.h \
facade_phrase_table2.h \
facade_phrase_table3.h \
table_info.h
noinst_LTLIBRARIES = libstorage.la
libstorage_la_CXXFLAGS = "-fPIC"
libstorage_la_LDFLAGS = -static
libstorage_la_SOURCES = phrase_index.cpp \
phrase_large_table2.cpp \
phrase_large_table3.cpp \
ngram.cpp \
tag_utility.cpp \
chewing_key.cpp \
pinyin_parser2.cpp \
zhuyin_parser2.cpp \
chewing_large_table.cpp \
table_info.cpp
if BERKELEYDB
libstorage_la_SOURCES += ngram_bdb.cpp
endif
if KYOTOCABINET
libstorage_la_SOURCES += ngram_kyotodb.cpp
endif
|