begin to write import iterator
[platform/upstream/libpinyin.git] / src / storage / Makefile.am
1 ## Makefile.am -- Process this file with automake to produce Makefile.in
2 ## Copyright (C) 2007 Peng Wu
3 ##
4 ## This program is free software; you can redistribute it and/or modify
5 ## it under the terms of the GNU General Public License as published by
6 ## the Free Software Foundation; either version 2, or (at your option)
7 ## any later version.
8 ##
9 ## This program is distributed in the hope that it will be useful,
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ## GNU General Public License for more details.
13 ##
14 ## You should have received a copy of the GNU General Public License
15 ## along with this program; if not, write to the Free Software
16 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18 INCLUDES                = -I$(top_srcdir)/src/include \
19                           -I$(top_srcdir)/src/storage \
20                           @GLIB2_CPPFLAGS@
21
22 libpinyinincludedir     = $(includedir)/libpinyin-@VERSION@
23
24 libpinyininclude_HEADERS= chewing_enum.h \
25                           chewing_key.h \
26                           pinyin_custom2.h \
27                           pinyin_parser2.h
28
29
30 noinst_HEADERS          = phrase_index.h \
31                           phrase_index_logger.h \
32                           phrase_large_table.h \
33                           ngram.h \
34                           flexible_ngram.h \
35                           tag_utility.h \
36                           pinyin_parser_table.h \
37                           double_pinyin_table.h \
38                           chewing_table.h \
39                           pinyin_phrase2.h \
40                           chewing_large_table.h \
41                           facade_chewing_table.h \
42                           facade_phrase_table.h
43
44
45 noinst_LTLIBRARIES      = libstorage.la
46
47 libstorage_la_CXXFLAGS  = "-fPIC"
48
49 libstorage_la_LDFLAGS   = -static
50
51 libstorage_la_SOURCES    = phrase_index.cpp \
52                            phrase_large_table.cpp \
53                            ngram.cpp \
54                            tag_utility.cpp \
55                            pinyin_parser2.cpp \
56                            chewing_large_table.cpp
57