forked from wxMEdit/wxMEdit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
242 lines (225 loc) · 6.42 KB
/
Makefile.am
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
SUBDIRS = syntax po
enc_src = src/xm/encoding/cp20932.cpp \
src/xm/encoding/cp20932.h \
src/xm/encoding/doublebyte.cpp \
src/xm/encoding/doublebyte.h \
src/xm/encoding/encoding.cpp \
src/xm/encoding/encoding.h \
src/xm/encoding/encoding_def.h \
src/xm/encoding/external.h \
src/xm/encoding/multibyte.cpp \
src/xm/encoding/multibyte.h \
src/xm/encoding/gb18030.cpp \
src/xm/encoding/gb18030.h \
src/xm/encoding/singlebyte.cpp \
src/xm/encoding/singlebyte.h \
src/xm/encoding/unicode.cpp \
src/xm/encoding/unicode.h \
src/xm/line_enc_adapter.h
encdet_src = src/xm/encdet.cpp \
src/xm/encdet.h \
src/xm/mad_encdet.cpp \
src/xm/mad_encdet.h
bin_PROGRAMS = wxmedit
check_PROGRAMS = wxmedit_test
TESTS = wxmedit_test
wxmedit_LDADD = ${curl_LIBS}
wxmedit_CXXFLAGS = -DDATA_DIR=\"${datadir}\" ${curl_CFLAGS}
wxmedit_SOURCES = $(enc_src) \
$(encdet_src) \
src/dialog/wxm_conv_enc_dialog.cpp \
src/dialog/wxm_conv_enc_dialog.h \
src/dialog/wxm_enumeration_dialog.cpp \
src/dialog/wxm_enumeration_dialog.h \
src/dialog/wxm_find_in_files_dialog.cpp \
src/dialog/wxm_find_in_files_dialog.h \
src/dialog/wxm_highlighting_dialog.cpp \
src/dialog/wxm_highlighting_dialog.h \
src/dialog/wxm_purge_histories_dialog.cpp \
src/dialog/wxm_purge_histories_dialog.h \
src/dialog/wxm_search_replace_dialog.cpp \
src/dialog/wxm_search_replace_dialog.h \
src/dialog/wxm_sort_dialog.cpp \
src/dialog/wxm_sort_dialog.h \
src/dialog/wxm_word_count_dialog.cpp \
src/dialog/wxm_word_count_dialog.h \
src/dialog/wxmedit_about_dialog.cpp \
src/dialog/wxmedit_about_dialog.h \
src/dialog/wxmedit_options_dialog.cpp \
src/dialog/wxmedit_options_dialog.h \
src/mad_utils.cpp \
src/mad_utils.h \
src/wxm/case_conv.cpp \
src/wxm/case_conv.h \
src/wxm/choice_map.hpp \
src/wxm/def.h \
src/wxm/edit/inframe.cpp \
src/wxm/edit/inframe.h \
src/wxm/edit/simple.cpp \
src/wxm/edit/simple.h \
src/wxm/edit/single_line.cpp \
src/wxm/edit/single_line.h \
src/wxm/recent_list.cpp \
src/wxm/recent_list.h \
src/wxm/searcher.cpp \
src/wxm/searcher.h \
src/wxm/status_bar.cpp \
src/wxm/status_bar.h \
src/wxm/update.cpp \
src/wxm/update.h \
src/wxm/utils.cpp \
src/wxm/utils.h \
src/wxm/wx_avoid_wxmsw_bug4373.h \
src/wxm/wx_icu.cpp \
src/wxm/wx_icu.h \
src/wxm_command.h \
src/wxm_printout.cpp \
src/wxm_printout.h \
src/wxmedit/caret_new.cpp \
src/wxmedit/caret_new.h \
src/wxmedit/clipbrd_gtk.cpp \
src/wxmedit/clipbrd_gtk.h \
src/wxmedit/trad_simp.cpp \
src/wxmedit/trad_simp.h \
src/wxmedit/wxm_lines.cpp \
src/wxmedit/wxm_lines.h \
src/wxmedit/wxm_syntax.cpp \
src/wxmedit/wxm_syntax.h \
src/wxmedit/wxm_undo.cpp \
src/wxmedit/wxm_undo.h \
src/wxmedit/wxmedit.cpp \
src/wxmedit/wxmedit.h \
src/wxmedit/wxmedit_advanced.cpp \
src/wxmedit/wxmedit_basic.cpp \
src/wxmedit/wxmedit_command.cpp \
src/wxmedit/wxmedit_command.h \
src/wxmedit/wxmedit_gtk.cpp \
src/wxmedit_app.cpp \
src/wxmedit_app.h \
src/wxmedit_frame.cpp \
src/wxmedit_frame.h \
src/xm/cxx11.h \
src/xm/remote.cpp \
src/xm/remote.h \
src/xm/ublock.cpp \
src/xm/ublock.h \
src/xm/ublock_des.cpp \
src/xm/utils.hpp \
src/xm/uutils.cpp \
src/xm/uutils.h
wxmedit_test_SOURCES = $(enc_src) \
$(encdet_src) \
src/xm/cxx11.h \
src/xm/utils.hpp \
src/xm/uutils.h \
src/xm/uutils.cpp \
test/encdet/data_from_icudet.cpp \
test/encdet/data_from_icudet.h \
test/encdet/data_from_mozdet.cpp \
test/encdet/data_from_mozdet.h \
test/encdet/test_detenc.cpp \
test/encdet/test_detenc.h \
test/encdet/test_from_icudet.cpp \
test/encdet/test_from_mozdet.cpp \
test/encdet/test_wxmedit_encdet.cpp \
test/encoding/data_cp20932_conv.cpp \
test/encoding/data_cp932_conv.cpp \
test/encoding/data_cp936_conv.cpp \
test/encoding/data_cp949_conv.cpp \
test/encoding/data_cp950_conv.cpp \
test/encoding/data_gb18030_bmp2db.cpp \
test/encoding/data_gb18030_bmp2qb.cpp \
test/encoding/data_gb18030_db2bmp.cpp \
test/encoding/data_gb18030_qb2bmp.cpp \
test/encoding/data_multibyte_conv.h \
test/encoding/data_singlebyte_conv.cpp \
test/encoding/data_singlebyte_conv.h \
test/encoding/test_doublebyte_conv.cpp \
test/encoding/test_gb18030_conv.cpp \
test/encoding/test_singlebyte_conv.cpp \
test/encdet_test.h \
test/encoding_test.h \
test/test.cpp
dist_doc_DATA = ChangeLog LICENSE README.txt
appdir = $(datadir)/applications
app_DATA = wxmedit.desktop
pixmapsdir = $(datadir)/pixmaps
pixmaps_DATA = images/wxmedit_16x16.xpm images/wxmedit_32x32.xpm
icons16dir = $(datadir)/icons/hicolor/16x16/apps
icons16_DATA = images/16x16/wxmedit.png
icons24dir = $(datadir)/icons/hicolor/24x24/apps
icons24_DATA = images/24x24/wxmedit.png
icons32dir = $(datadir)/icons/hicolor/32x32/apps
icons32_DATA = images/32x32/wxmedit.png
icons48dir = $(datadir)/icons/hicolor/48x48/apps
icons48_DATA = images/48x48/wxmedit.png
iconssvgdir = $(datadir)/icons/hicolor/scalable/apps
iconssvg_DATA = images/scalable/wxmedit.svg
install-data-hook:
touch $(DESTDIR)$(datadir)/icons/hicolor
EXTRA_DIST = $(app_DATA) $(pixmaps_DATA) \
$(icons16_DATA) $(icons24_DATA) $(icons32_DATA) $(icons48_DATA) $(iconssvg_DATA)
noinst_HEADERS = README.txt \
autogen.sh \
src/wxmedit_app.rc \
src/dialog/wxm_file_association_dialog.cpp \
src/dialog/wxm_file_association_dialog.h \
images/bmkclearall.xpm \
images/bmknext.xpm \
images/bmkprev.xpm \
images/bmktoggle.xpm \
images/closeall.xpm \
images/columnmode.xpm \
images/comment.xpm \
images/copy.xpm \
images/cut.xpm \
images/delete.xpm \
images/diffmode.xpm \
images/down.xpm \
images/fileclose.xpm \
images/fileopen.xpm \
images/filesaveas.xpm \
images/filesave.xpm \
images/findnext.xpm \
images/findprev.xpm \
images/find.xpm \
images/fontname.xpm \
images/fontsize.xpm \
images/font.xpm \
images/glslmode.xpm \
images/hexmode.xpm \
images/icons.png \
images/icons.svg \
images/indent.xpm \
images/mainicon.svg \
images/new.xpm \
images/nowrap.xpm \
images/null.xpm \
images/olist.xpm \
images/options.xpm \
images/paste.xpm \
images/preview.xpm \
images/print.xpm \
images/quit.xpm \
images/redo.xpm \
images/replace.xpm \
images/saveall.xpm \
images/texmode.xpm \
images/textmode.xpm \
images/uncomment.xpm \
images/undo.xpm \
images/unindent.xpm \
images/wrapbycol.xpm \
images/wrapbywin.xpm \
images/wxmedit_16x16.xpm \
images/wxmedit_24x24.xpm \
images/wxmedit_32x32.xpm \
images/wxmedit0.xpm \
images/wxmedit0.ico \
images/wxmedit.ico \
images/wxmedit.xpm \
po/wxmedit.pot \
po/wxstd.po.cpp
DOMAIN = wxmedit
podir = $(top_srcdir)/po
LINGUAS = @ALL_LINGUAS@