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