ast: cast to ParseCommon explictly instead of using ->common
[platform/upstream/libxkbcommon.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
2
3 pkgconfigdir = $(libdir)/pkgconfig
4 pkgconfig_DATA = xkbcommon.pc
5
6 EXTRA_DIST = \
7         makekeys.py \
8         src/xkbcomp/keywords.gperf \
9         test/data
10
11 AM_CPPFLAGS = \
12         -DDFLT_XKB_CONFIG_ROOT='"$(XKBCONFIGROOT)"' \
13         -I$(top_srcdir)/src \
14         -I$(top_srcdir)/src/xkbcomp \
15         -I$(top_builddir)/src/xkbcomp \
16         -include $(top_builddir)/src/config.h
17
18 AM_CFLAGS = $(BASE_CFLAGS)
19
20 AM_LDFLAGS = -no-undefined
21 if HAVE_NO_UNDEFINED
22 AM_LDFLAGS += -Wl,--no-undefined
23 endif
24
25 AM_YFLAGS = -d -p _xkbcommon_
26
27 xkbcommonincludedir = $(includedir)/xkbcommon
28 xkbcommoninclude_HEADERS = \
29         xkbcommon/xkbcommon.h \
30         xkbcommon/xkbcommon-compat.h \
31         xkbcommon/xkbcommon-keysyms.h \
32         xkbcommon/xkbcommon-names.h
33
34 lib_LTLIBRARIES = libxkbcommon.la
35 libxkbcommon_la_SOURCES = \
36         src/xkbcomp/action.c \
37         src/xkbcomp/action.h \
38         src/xkbcomp/ast.h \
39         src/xkbcomp/ast-build.c \
40         src/xkbcomp/ast-build.h \
41         src/xkbcomp/compat.c \
42         src/xkbcomp/expr.c \
43         src/xkbcomp/expr.h \
44         src/xkbcomp/include.c \
45         src/xkbcomp/include.h \
46         src/xkbcomp/keycodes.c \
47         src/xkbcomp/keymap.c \
48         src/xkbcomp/keymap-dump.c \
49         src/xkbcomp/keywords.c \
50         src/xkbcomp/parser.y \
51         src/xkbcomp/parser-priv.h \
52         src/xkbcomp/rules.c \
53         src/xkbcomp/rules.h \
54         src/xkbcomp/scanner.c \
55         src/xkbcomp/symbols.c \
56         src/xkbcomp/types.c \
57         src/xkbcomp/vmod.c \
58         src/xkbcomp/vmod.h \
59         src/xkbcomp/xkbcomp.c \
60         src/xkbcomp/xkbcomp-priv.h \
61         src/atom.c \
62         src/atom.h \
63         src/context.c \
64         src/context.h \
65         src/context-priv.c \
66         src/compat.c \
67         src/darray.h \
68         src/keysym.c \
69         src/keysym.h \
70         src/keysym-utf.c \
71         src/ks_tables.h \
72         src/keymap.c \
73         src/keymap.h \
74         src/keymap-priv.c \
75         src/scanner-utils.h \
76         src/state.c \
77         src/text.c \
78         src/text.h \
79         src/utils.c \
80         src/utils.h
81
82 if ENABLE_X11
83 pkgconfig_DATA += xkbcommon-x11.pc
84
85 xkbcommon_x11includedir = $(xkbcommonincludedir)
86 xkbcommon_x11include_HEADERS = \
87         xkbcommon/xkbcommon-x11.h
88
89 lib_LTLIBRARIES += libxkbcommon-x11.la
90
91 libxkbcommon_x11_la_CFLAGS = $(AM_CFLAGS) $(XCB_XKB_CFLAGS)
92 libxkbcommon_x11_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src/x11
93 libxkbcommon_x11_la_LIBADD = libxkbcommon.la $(XCB_XKB_LIBS)
94
95 libxkbcommon_x11_la_SOURCES = \
96         src/x11/keymap.c \
97         src/x11/state.c \
98         src/x11/util.c \
99         src/x11/x11-priv.h \
100         src/context.h \
101         src/context-priv.c \
102         src/keymap.h \
103         src/keymap-priv.c \
104         src/atom.h \
105         src/atom.c
106 endif ENABLE_X11
107
108 BUILT_SOURCES = \
109         src/xkbcomp/parser.c \
110         src/xkbcomp/parser.h
111 CLEANFILES = $(BUILT_SOURCES)
112
113 src/xkbcomp/parser.c: $(top_builddir)/src/$(am__dirstamp) $(top_builddir)/src/xkbcomp/$(am__dirstamp)
114 src/xkbcomp/parser.h: $(top_builddir)/src/$(am__dirstamp) $(top_builddir)/src/xkbcomp/$(am__dirstamp)
115
116 ##
117 # Documentation
118 ##
119
120 if ENABLE_DOCS
121 if HAVE_DOXYGEN
122 doc: doc/stamp-doxygen
123 clean-doc: clean-doxygen
124 all-local:: doc
125 clean-local:: clean-doc
126
127 doc/stamp-doxygen: $(top_srcdir)/xkbcommon/*.h
128         $(AM_V_GEN)$(DOXYGEN) doc/Doxyfile
129         touch $@
130
131 clean-doxygen:
132         rm -rf doc/html doc/stamp-doxygen
133
134 install-data-local:: doc
135         $(MKDIR_P) $(DESTDIR)$(htmldir)
136         $(INSTALL_DATA) doc/html/* $(DESTDIR)$(htmldir)
137
138 uninstall-local::
139         rm -rf $(DESTDIR)$(htmldir)
140 endif HAVE_DOXYGEN
141 endif ENABLE_DOCS
142
143 ##
144 # Tests
145 ##
146
147 # Some tests need to use unexported symbols, so we link them against
148 # a private copy of libxkbcommon with all symbols exposed.
149 check_LTLIBRARIES = libtest.la
150 libtest_la_CFLAGS = $(AM_CFLAGS) -fvisibility=default
151 libtest_la_SOURCES = \
152         $(libxkbcommon_la_SOURCES) \
153         test/common.c \
154         test/test.h
155
156 AM_TESTS_ENVIRONMENT = \
157         XKB_LOG_LEVEL=debug; export XKB_LOG_LEVEL; \
158         XKB_LOG_VERBOSITY=10; export XKB_LOG_VERBOSITY; \
159         $(XORG_MALLOC_DEBUG_ENV)
160
161 TESTS = \
162         test/keysym \
163         test/filecomp \
164         test/context \
165         test/rules-file \
166         test/stringcomp \
167         test/buffercomp \
168         test/log \
169         test/atom
170 check_PROGRAMS = \
171         test/rmlvo-to-kccgst \
172         test/print-compiled-keymap \
173         test/bench-key-proc
174
175 TESTS_LDADD = libtest.la
176
177 test_keysym_LDADD = $(TESTS_LDADD)
178 test_filecomp_LDADD = $(TESTS_LDADD)
179 test_context_LDADD = $(TESTS_LDADD)
180 test_rules_file_CFLAGS = $(AM_CFLAGS) -Wno-declaration-after-statement
181 test_rules_file_LDADD = $(TESTS_LDADD) -lrt
182 test_stringcomp_LDADD = $(TESTS_LDADD)
183 test_buffercomp_LDADD = $(TESTS_LDADD)
184 test_log_LDADD = $(TESTS_LDADD)
185 test_atom_LDADD = $(TESTS_LDADD)
186 test_rmlvo_to_kccgst_LDADD = $(TESTS_LDADD)
187 test_print_compiled_keymap_LDADD = $(TESTS_LDADD)
188 test_bench_key_proc_LDADD = $(TESTS_LDADD) -lrt
189
190 if BUILD_LINUX_TESTS
191 TESTS += \
192         test/state \
193         test/keyseq \
194         test/rulescomp
195 check_PROGRAMS += \
196         test/interactive-evdev
197
198 test_state_LDADD = $(TESTS_LDADD)
199 test_keyseq_LDADD = $(TESTS_LDADD)
200 test_rulescomp_LDADD = $(TESTS_LDADD) -lrt
201 test_interactive_evdev_LDADD = $(TESTS_LDADD)
202 endif BUILD_LINUX_TESTS
203
204 if ENABLE_X11
205 TESTS += \
206         test/x11
207 check_PROGRAMS += \
208         test/interactive-x11
209
210 TESTS_X11_LDADD = $(XCB_XKB_LIBS) $(TESTS_LDADD) libxkbcommon-x11.la
211 TESTS_X11_CFLAGS = $(XCB_XKB_CFLAGS)
212
213 test_x11_LDADD = $(TESTS_X11_LDADD)
214 test_x11_CFLAGS = $(TESTS_X11_CFLAGS)
215 test_interactive_x11_LDADD = $(TESTS_X11_LDADD)
216 test_interactive_x11_CFLAGS = $(TESTS_X11_CFLAGS)
217 endif ENABLE_X11
218
219 check_PROGRAMS += $(TESTS)
220
221 ##
222 # Custom targets
223 ##
224
225 # This sed script strips out lines that start with '#define _' which
226 # removes #define _OSF_Keysyms and such.  The XK_Ydiaeresis case is to
227 # handle a duplicate definition in HPkeysyms.h which kicks in if it's
228 # not already defined.
229 X11_INCLUDEDIR = /usr/include/X11
230 KEYSYMDEFS = \
231          $(X11_INCLUDEDIR)/keysymdef.h \
232          $(X11_INCLUDEDIR)/XF86keysym.h \
233          $(X11_INCLUDEDIR)/Sunkeysym.h \
234          $(X11_INCLUDEDIR)/DECkeysym.h \
235          $(X11_INCLUDEDIR)/HPkeysym.h
236 update-keysyms:
237         echo -en '#ifndef _XKBCOMMON_KEYSYMS_H\n#define _XKBCOMMON_KEYSYMS_H\n\n' > $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
238         echo -en '/* This file is autogenerated from Makefile.am; please do not commit directly. */\n\n' >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
239         echo -en '#define XKB_KEY_NoSymbol                    0x000000  /* Special KeySym */\n\n' >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
240         sed -e '/XK_Ydiaeresis\s*0x100000ee/d' \
241             -e '/#define _/d' \
242             -e 's/#define\s*\(\w*\)XK_/#define XKB_KEY_\1/' \
243             -e '/\(#ifdef\|#ifndef\|#endif\)/d' $(KEYSYMDEFS) >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
244         echo -en '\n\n#endif\n' >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
245         LC_CTYPE=C python $(top_srcdir)/makekeys.py $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h > $(top_srcdir)/src/ks_tables.h
246
247 # Run this if you add/remove a new keyword to the xkbcomp scanner,
248 # or just want to regenerate the gperf file.
249 update-keywords:
250         $(AM_V_GEN)gperf < $(top_srcdir)/src/xkbcomp/keywords.gperf > $(top_srcdir)/src/xkbcomp/keywords.c
251
252 ##
253 # Android stuff
254 ##
255
256 Android_build.mk: Makefile $(BUILT_SOURCES)
257         androgenizer \
258         -:PROJECT libxkbcommon \
259         -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
260         \
261         -:STATIC libxkbcommon \
262         -:TAGS eng debug \
263         -:SOURCES $(filter-out %.l %.y,$(libxkbcommon_la_SOURCES)) $(BUILT_SOURCES) \
264         -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $(AM_CFLAGS) \
265         -:LDFLAGS $(AM_LDFLAGS) \
266         \
267         -:PASSTHROUGH 'libxkbcommon-clean: clean-libxkbcommon' \
268         > $@