summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
blob: 25fc2a3b5abf75bd3e551a8c2de91e4a4b590f4f (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# vim:set noet ts=4:
#
# ibus-libzhuyin - New Zhuyin engine based on libzhuyin for IBus
#
# Copyright (c) 2014 Peng Wu <alexepico@gmail.com>
#
# 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.

libexec_PROGRAMS = ibus-engine-libzhuyin

#ibus_engine_libzhuyin_built_c_sources = \
#	$(NULL)
#ibus_engine_libzhuyin_built_h_sources = \
#	ZYPunctTable.h \
#	ZYSimpTradConverterTable.h \
#	$(NULL)

ibus_engine_libzhuyin_c_sources = \
	ZYConfig.cc \
	ZYEditor.cc \
	ZYLibZhuyin.cc \
	ZYZConfig.cc \
	ZYZhuyinProperties.cc \
	ZYTradSimpConverter.cc \
	ZYEnhancedText.cc \
	ZYZEnhancedEditor.cc \
	ZYZPhoneticEditor.cc \
	ZYZZhuyinEditor.cc \
	ZYSymbols.cc \
	ZYZBuiltinSymbolSection.cc \
	ZYZPhoneticSection.cc \
	ZYMain.cc \
	$(NULL)

ibus_engine_libzhuyin_h_sources = \
	ZYBus.h \
	ZYConfig.h \
	ZYEditor.h \
	ZYLookupTable.h \
	ZYObject.h \
	ZYLibZhuyin.h \
	ZYZConfig.h \
	ZYZhuyinProperties.h \
	ZYTradSimpConverter.h \
	ZYEnhancedText.h \
	ZYZEnhancedEditor.h \
	ZYZPhoneticEditor.h \
	ZYZZhuyinEditor.h \
	ZYSymbols.h \
	ZYZSymbolSection.h \
	ZYZBuiltinSymbolSection.h \
	ZYZPhoneticSection.h \
	ZYPointer.h \
	ZYProperty.h \
	ZYRawEditor.h \
	ZYSignal.h \
	ZYString.h \
	ZYText.h \
	ZYTypes.h \
	ZYUtil.h \
	$(NULL)

#ibus_engine_libzhuyin_c_sources += \
#	ZYZConfig.cc \
#	ZYZPhoneticEditor.cc \
#	ZYZFullPinyinEditor.cc \
#	ZYZZhuyinEditor.cc \
#	ZYZPinyinEngine.cc \
#	ZYZZhuyinEngine.cc \
#	$(NULL)

ibus_engine_libzhuyin_SOURCES = \
        $(ibus_engine_libzhuyin_c_sources) \
        $(ibus_engine_libzhuyin_h_sources) \
        $(NULL)

ibus_engine_libzhuyin_CXXFLAGS = \
        @IBUS_CFLAGS@ \
        @LIBZHUYIN_CFLAGS@ \
	@OPENCC_CFLAGS@ \
        -DGETTEXT_PACKAGE=\"@GETTEXT_PACKAGE@\" \
        -DPKGDATADIR=\"$(pkgdatadir)\" \
        -DLIBEXECDIR=\"$(libexecdir)\" \
        -DLIBZHUYIN_DATADIR=\"@LIBZHUYIN_DATADIR@\/data\" \
        $(NULL)

if HAVE_BOOST
ibus_engine_libzhuyin_CXXFLAGS += \
        @BOOST_CPPFLAGS@ \
        $(NULL)
else
ibus_engine_libzhuyin_CXXFLAGS += \
        -std=c++0x \
        $(NULL)
endif

ibus_engine_libzhuyin_LDADD = \
        @IBUS_LIBS@ \
        @LIBZHUYIN_LIBS@ \
	@OPENCC_LIBS@ \
        $(NULL)