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