1 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
3 pkgconfigdir = $(libdir)/pkgconfig
4 pkgconfig_DATA = xkbcommon.pc
7 -DDFLT_XKB_CONFIG_ROOT='"$(XKBCONFIGROOT)"' \
9 -I$(top_srcdir)/src/xkbcomp \
10 -I$(top_builddir)/src/xkbcomp \
11 -include $(top_builddir)/src/config.h
13 AM_CFLAGS = $(BASE_CFLAGS)
15 AM_LFLAGS = -o lex.yy.c
18 xkbcommonincludedir = $(includedir)/xkbcommon
19 xkbcommoninclude_HEADERS = \
20 xkbcommon/xkbcommon.h \
21 xkbcommon/xkbcommon-compat.h \
22 xkbcommon/xkbcommon-keysyms.h \
23 xkbcommon/xkbcommon-names.h
25 lib_LTLIBRARIES = libxkbcommon.la
26 libxkbcommon_la_LDFLAGS = -no-undefined
27 libxkbcommon_la_SOURCES = \
28 src/xkbcomp/action.c \
29 src/xkbcomp/action.h \
31 src/xkbcomp/ast-build.c \
32 src/xkbcomp/ast-build.h \
33 src/xkbcomp/compat.c \
36 src/xkbcomp/include.c \
37 src/xkbcomp/include.h \
38 src/xkbcomp/keycodes.c \
39 src/xkbcomp/keymap.c \
40 src/xkbcomp/keymap-dump.c \
41 src/xkbcomp/keywords.c \
42 src/xkbcomp/parser.y \
43 src/xkbcomp/parser-priv.h \
46 src/xkbcomp/scanner.c \
47 src/xkbcomp/scanner-utils.h \
48 src/xkbcomp/symbols.c \
52 src/xkbcomp/xkbcomp.c \
53 src/xkbcomp/xkbcomp-priv.h \
73 src/xkbcomp/parser.c \
75 CLEANFILES = $(BUILT_SOURCES)
77 src/xkbcomp/parser.c: $(top_builddir)/src/$(am__dirstamp) $(top_builddir)/src/xkbcomp/$(am__dirstamp)
78 src/xkbcomp/parser.h: $(top_builddir)/src/$(am__dirstamp) $(top_builddir)/src/xkbcomp/$(am__dirstamp)
84 doc: doc/stamp-doxygen
85 clean-doc: clean-doxygen
87 clean-local:: clean-doc
89 doc/stamp-doxygen: $(top_srcdir)/xkbcommon/*.h
90 $(AM_V_GEN)$(DOXYGEN) doc/Doxyfile
94 rm -rf doc/html doc/stamp-doxygen
96 install-data-local:: doc
97 $(MKDIR_P) $(DESTDIR)$(htmldir)
98 $(INSTALL_DATA) doc/html/* $(DESTDIR)$(htmldir)
101 rm -rf $(DESTDIR)$(htmldir)
108 # Some tests need to use unexported symbols, so we link them against
109 # a private copy of libxkbcommon with all symbols exposed.
110 noinst_LTLIBRARIES = libtest.la
111 libtest_la_LDFLAGS = $(libxkbcommon_la_LDFLAGS)
112 libtest_la_SOURCES = \
113 $(libxkbcommon_la_SOURCES) \
117 AM_TESTS_ENVIRONMENT = \
118 XKB_LOG_LEVEL=debug; export XKB_LOG_LEVEL; \
119 XKB_LOG_VERBOSITY=10; export XKB_LOG_VERBOSITY; \
120 $(XORG_MALLOC_DEBUG_ENV)
130 TESTS_LDADD = libtest.la
132 test_keysym_LDADD = $(TESTS_LDADD)
133 test_filecomp_LDADD = $(TESTS_LDADD)
134 test_rulescomp_LDADD = $(TESTS_LDADD) -lrt
135 test_context_LDADD = $(TESTS_LDADD)
136 test_rules_file_CFLAGS = $(AM_CFLAGS) -Wno-declaration-after-statement
137 test_rules_file_LDADD = $(TESTS_LDADD) -lrt
138 test_stringcomp_LDADD = $(TESTS_LDADD)
139 test_buffercomp_LDADD = $(TESTS_LDADD)
140 test_log_LDADD = $(TESTS_LDADD)
141 test_rmlvo_to_kccgst_LDADD = $(TESTS_LDADD)
142 test_print_compiled_keymap_LDADD = $(TESTS_LDADD)
143 test_bench_key_proc_LDADD = $(TESTS_LDADD) -lrt
147 test/rmlvo-to-kccgst \
148 test/print-compiled-keymap \
157 test_keyseq_LDADD = $(TESTS_LDADD)
158 test_state_LDADD = $(TESTS_LDADD)
159 test_interactive_LDADD = $(TESTS_LDADD)
164 endif BUILD_LINUX_TESTS
169 # This sed script strips out lines that start with '#define _' which
170 # removes #define _OSF_Keysyms and such. The XK_Ydiaeresis case is to
171 # handle a duplicate definition in HPkeysyms.h which kicks in if it's
172 # not already defined.
173 X11_INCLUDEDIR = /usr/include/X11
175 $(X11_INCLUDEDIR)/keysymdef.h \
176 $(X11_INCLUDEDIR)/XF86keysym.h \
177 $(X11_INCLUDEDIR)/Sunkeysym.h \
178 $(X11_INCLUDEDIR)/DECkeysym.h \
179 $(X11_INCLUDEDIR)/HPkeysym.h
181 echo -en '#ifndef _XKBCOMMON_KEYSYMS_H\n#define _XKBCOMMON_KEYSYMS_H\n\n' > $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
182 echo -en '/* This file is autogenerated from Makefile.am; please do not commit directly. */\n\n' >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
183 echo -en '#define XKB_KEY_NoSymbol 0x000000 /* Special KeySym */\n\n' >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
184 sed -e '/XK_Ydiaeresis\s*0x100000ee/d' \
186 -e 's/#define\s*\(\w*\)XK_/#define XKB_KEY_\1/' \
187 -e '/\(#ifdef\|#ifndef\|#endif\)/d' $(KEYSYMDEFS) >> $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h
188 echo -en '\n\n#endif\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)/src/ks_tables.h
190 LC_CTYPE=C python $(top_srcdir)/makekeys.py $(top_srcdir)/xkbcommon/xkbcommon-keysyms.h >> $(top_srcdir)/src/ks_tables.h
192 # Run this if you add/remove a new keyword to the xkbcomp scanner,
193 # or just want to regenerate the gperf file.
195 $(AM_V_GEN)gperf < $(top_srcdir)/src/xkbcomp/keywords.gperf > $(top_srcdir)/src/xkbcomp/keywords.c
199 Android_build.mk: Makefile $(BUILT_SOURCES)
201 -:PROJECT libxkbcommon \
202 -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
204 -:STATIC libxkbcommon \
206 -:SOURCES $(filter-out %.l %.y,$(libxkbcommon_la_SOURCES)) $(BUILT_SOURCES) \
207 -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $(AM_CFLAGS) \
208 -:LDFLAGS $(libxkbcommon_la_LDFLAGS) \
210 -:PASSTHROUGH 'libxkbcommon-clean: clean-libxkbcommon' \