uterm: split fbdev module into different files
[platform/upstream/kmscon.git] / Makefile.am
1 #
2 # Kmscon - Global Makefile
3 # Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.com>
4 #
5
6 ACLOCAL_AMFLAGS = -I m4
7 SUBDIRS = \
8         .
9 include_HEADERS =
10 EXTRA_DIST = \
11         README \
12         COPYING \
13         NEWS \
14         docs/kmscon.service \
15         docs/kmsconvt@.service
16 CLEANFILES =
17 pkgconfigdir = $(libdir)/pkgconfig
18 pkgconfig_DATA =
19 MANPAGES =
20 MANPAGES_ALIASES =
21 TPHONY =
22
23 bin_PROGRAMS =
24 check_PROGRAMS =
25 noinst_PROGRAMS = \
26         genshader \
27         genunifont
28 noinst_LTLIBRARIES =
29 lib_LTLIBRARIES =
30
31 moduledir = @libdir@/kmscon
32 module_LTLIBRARIES =
33
34 #
35 # Default CFlags
36 # Make all files include "config.h" by default. This shouldn't cause any
37 # problems and we cannot forget to include it anymore.
38 #
39 # Also make the linker discard all unused symbols.
40 #
41 # When compiling in debug mode, we enable debug symbols so debugging with gdb
42 # is easier. If optimizations are disabled, we pass -O0 to the compiler.
43 # Otherwise, we use standard optimizations -O2.
44 #
45
46 AM_CFLAGS = \
47         -Wall
48 AM_CPPFLAGS = \
49         -DBUILD_MODULE_DIR='"$(moduledir)"' \
50         -include $(top_builddir)/config.h \
51         -I $(srcdir)/src
52 AM_LDFLAGS = \
53         -Wl,--as-needed
54
55 if BUILD_ENABLE_DEBUG
56 AM_CFLAGS += -g
57 endif
58
59 if BUILD_ENABLE_OPTIMIZATIONS
60 AM_CFLAGS += -O2
61 else
62 AM_CFLAGS += -O0
63 endif
64
65 #
66 # SHL - Static Helper Library
67 # The SHL subsystem contains several small code pieces used all over kmscon and
68 # other applications.
69 #
70 # Simply include $(SHL_*) in your source-file list.
71 # SHL_MISC needs xkbcommon
72 # SHL_REGISTER needs pthread
73 #
74
75 SHL_DLIST = \
76         src/shl_dlist.h
77 SHL_ARRAY = \
78         src/shl_array.h
79 SHL_HASHTABLE = \
80         src/shl_hashtable.h \
81         external/htable.h \
82         external/htable.c
83 SHL_RING = \
84         src/shl_ring.h
85 SHL_TIMER = \
86         src/shl_timer.h
87 SHL_LLOG = \
88         src/shl_llog.h
89 SHL_HOOK = \
90         src/shl_hook.h \
91         $(SHL_DLIST)
92 SHL_MISC = \
93         src/shl_misc.h
94 SHL_REGISTER = \
95         src/shl_register.h \
96         $(SHL_DLIST)
97
98 #
99 # GIT-HEAD helper
100 # The file ./src/githead.h contains a constant BUILD_GIT_HEAD which is defined
101 # to the string returned by "git describe". We need to adjust this string for
102 # every build and correctly rebuild any sources that depend on it. Therefore,
103 # you should use this file rarely as it causes rebuilds on every git-commit.
104 #
105 # We have a helper-script ./src/genversion.sh that takes as argument the header
106 # file and creates it if necessary. It updates it only if the new git-describe
107 # string is different to the old one. So the file is only modified on changes.
108 # Hence, we can use it as normal dependency in this Makefile.
109 # However, we need to run this script on _every_ "make" invocation before any
110 # recipy is executed. To achieve this, we use $(shell ...) and assign it to a
111 # "simply expanded" variable (:=) so the shell command is executed on
112 # variable-declaration and not during expansion.
113 #
114 # Note that we must not clean ./src/githead.h ever! If we would, a distribution
115 # tarball might delete that file and have no way to recreate it.
116 # We could delete it on something like "make maintainerclean", but then again,
117 # it seems unnecessary so lets simply not clean it at all.
118 #
119 # If the helper-script is executed in a directory that is not a git-repository
120 # (like a distribution tarball) and githead.h exists, then it does nothing as it
121 # expects githead.h to be correctly written by "make dist".
122 # However, if githead.h does not exist, it will print a warning and write
123 # "<unknown>" as git-revision.
124 # This guarantees, that githead.h is always present and has the most correct
125 # value that we can get under any conditions.
126 #
127 # The $(emptyvariable) expansion below is used for broken $(shell ...)
128 # syntax-highlighting algorithms in many existing editors.
129 #
130
131 EXTRA_DIST += src/genversion.sh
132 GITHEAD:=$(shell $(emptyvariable)"$(srcdir)/src/genversion.sh" "$(srcdir)/src/githead.h")
133
134 #
135 # libeloop
136 # This library contains the whole event-loop implementation of kmscon. It is
137 # compiled into a separate object to allow using it in several other programs.
138 #
139
140 if BUILD_ENABLE_ELOOP
141 lib_LTLIBRARIES += libeloop.la
142 include_HEADERS += src/eloop.h
143 pkgconfig_DATA += docs/pc/libeloop.pc
144 endif
145
146 libeloop_la_SOURCES = \
147         $(SHL_DLIST) \
148         $(SHL_LLOG) \
149         $(SHL_HOOK) \
150         src/eloop.h \
151         src/eloop.c
152
153 libeloop_la_CPPFLAGS = \
154         $(AM_CPPFLAGS)
155 libeloop_la_LIBADD =
156 libeloop_la_LDFLAGS = \
157         -version-info 1:0:0
158
159
160 if BUILD_ENABLE_ELOOP_DBUS
161 libeloop_la_SOURCES += \
162         external/dbus-common.h \
163         external/dbus-loop.h \
164         external/dbus-loop.c
165 libeloop_la_CPPFLAGS += \
166         $(DBUS_CFLAGS)
167 libeloop_la_LIBADD += \
168         $(DBUS_LIBS)
169 endif
170
171 #
172 # libtsm
173 # The Terminal-emulator State Machine is a library that implements the whole VTE
174 # layer and everything related to it. It has no external dependencies so it can
175 # be used to implement any kind of terminal emulator or debugger.
176 #
177
178 if BUILD_ENABLE_TSM
179 lib_LTLIBRARIES += \
180         libtsm.la
181 include_HEADERS += \
182         src/tsm_screen.h \
183         src/tsm_unicode.h \
184         src/tsm_vte.h
185 pkgconfig_DATA += \
186         docs/pc/libtsm.pc
187 endif
188
189 libtsm_la_SOURCES = \
190         $(SHL_LLOG) \
191         $(SHL_TIMER) \
192         $(SHL_ARRAY) \
193         $(SHL_HASHTABLE) \
194         src/tsm_screen.h \
195         src/tsm_screen.c \
196         src/tsm_unicode.h \
197         src/tsm_unicode.c \
198         src/tsm_vte.h \
199         src/tsm_vte.c \
200         src/tsm_vte_charsets.c \
201         external/wcwidth.h \
202         external/wcwidth.c
203
204 libtsm_la_CPPFLAGS = \
205         $(AM_CPPFLAGS) \
206         $(XKBCOMMON_CFLAGS)
207 libtsm_la_LDFLAGS = \
208         $(XKBCOMMON_LIBS) \
209         -version-info 1:0:0
210
211 #
212 # libuterm
213 # The uterm library provides helpers to create terminals in user-space. They
214 # are not limited to text-based terminals but rather provide graphics contexts
215 # so arbitrary output can be displayed. Additionally, they provide VT
216 # abstractions and an input layer
217 #
218
219 if BUILD_ENABLE_UTERM
220 lib_LTLIBRARIES += libuterm.la
221 include_HEADERS += \
222         src/uterm_input.h \
223         src/uterm_monitor.h \
224         src/uterm_video.h \
225         src/uterm_vt.h
226 pkgconfig_DATA += docs/pc/libuterm.pc
227 endif
228
229 libuterm_la_SOURCES = \
230         $(SHL_DLIST) \
231         $(SHL_HOOK) \
232         $(SHL_MISC) \
233         src/uterm_input.h \
234         src/uterm_monitor.h \
235         src/uterm_video.h \
236         src/uterm_vt.h \
237         src/uterm_input_internal.h \
238         src/uterm_video_internal.h \
239         src/uterm_systemd_internal.h \
240         src/uterm_video.c \
241         src/uterm_monitor.c \
242         src/uterm_vt.c \
243         src/uterm_input.c \
244         src/uterm_input_uxkb.c
245
246 nodist_libuterm_la_SOURCES =
247
248 libuterm_la_CPPFLAGS = \
249         $(AM_CPPFLAGS) \
250         $(XKBCOMMON_CFLAGS)
251 libuterm_la_LIBADD = \
252         $(XKBCOMMON_LIBS) \
253         libeloop.la
254 libuterm_la_LDFLAGS = \
255         -version-info 1:0:0
256
257 if BUILD_ENABLE_MULTI_SEAT
258 libuterm_la_SOURCES += src/uterm_systemd.c
259 libuterm_la_CPPFLAGS += $(SYSTEMD_CFLAGS)
260 libuterm_la_LIBADD += $(SYSTEMD_LIBS)
261 endif
262
263 if BUILD_ENABLE_HOTPLUG
264 libuterm_la_CPPFLAGS += $(UDEV_CFLAGS)
265 libuterm_la_LIBADD += $(UDEV_LIBS)
266 endif
267
268 if BUILD_ENABLE_VIDEO_FBDEV
269 libuterm_la_SOURCES += \
270         src/uterm_fbdev_internal.h \
271         src/uterm_fbdev_video.c \
272         src/uterm_fbdev_render.c
273 endif
274
275 if BUILD_ENABLE_VIDEO_DUMB
276 libuterm_la_SOURCES += src/uterm_video_dumb.c
277 libuterm_la_CPPFLAGS += $(DRM_CFLAGS)
278 libuterm_la_LIBADD += $(DRM_LIBS)
279 endif
280
281 if BUILD_ENABLE_VIDEO_DRM
282 libuterm_la_SOURCES += \
283         src/uterm_video_drm.c \
284         src/static_gl.h \
285         src/static_gl_math.c \
286         src/static_gl_shader.c
287 nodist_libuterm_la_SOURCES += \
288         src/static_shaders.c
289 libuterm_la_CPPFLAGS += \
290         $(DRM_CFLAGS) \
291         $(EGL_CFLAGS) \
292         $(GBM_CFLAGS) \
293         $(GLES2_CFLAGS)
294 libuterm_la_LIBADD += \
295         $(DRM_LIBS) \
296         $(EGL_LIBS) \
297         $(GBM_LIBS) \
298         $(GLES2_LIBS)
299 endif
300
301 #
302 # Shaders
303 # As there is no need to modify shaders at run-time, we statically compile them
304 # into object files. As autotools would ignore them, we need to add them to
305 # EXTRA_DIST.
306 # The program that converts the shaders into C-source files is "genshader". It's
307 # pretty simple and just creates a string with the shader source as content.
308 #
309
310 SHADERS = \
311         $(srcdir)/src/static_fill.vert \
312         $(srcdir)/src/static_fill.frag \
313         $(srcdir)/src/static_blend.vert \
314         $(srcdir)/src/static_blend.frag \
315         $(srcdir)/src/static_blit.vert \
316         $(srcdir)/src/static_blit.frag \
317         $(srcdir)/src/static_gltex.vert \
318         $(srcdir)/src/static_gltex.frag
319
320 EXTRA_DIST += $(SHADERS)
321 CLEANFILES += src/static_shaders.c
322 genshader_SOURCES = src/genshader.c
323
324 src/static_shaders.c: $(SHADERS) genshader$(EXEEXT)
325         $(AM_V_GEN)./genshader$(EXEEXT) src/static_shaders.c $(SHADERS)
326
327 #
328 # Unifont Generator
329 # This generates the unifont sources from raw hex-encoded font data.
330 #
331
332 UNIFONT = src/font_unifont_data.hex
333
334 EXTRA_DIST += $(UNIFONT)
335 CLEANFILES += src/font_unifont_data.c
336 genunifont_SOURCES = src/genunifont.c
337
338 src/font_unifont_data.c: $(UNIFONT) genunifont$(EXEEXT)
339         $(AM_V_GEN)./genunifont$(EXEEXT) src/font_unifont_data.c $(UNIFONT)
340
341 #
342 # Kmscon Modules
343 #
344
345 if BUILD_ENABLE_FONT_UNIFONT
346 module_LTLIBRARIES += mod-unifont.la
347 endif
348
349 mod_unifont_la_SOURCES = \
350         src/kmscon_module_interface.h \
351         src/githead.h \
352         src/font_unifont.c \
353         src/kmscon_mod_unifont.c
354 nodist_mod_unifont_la_SOURCES = \
355         src/font_unifont_data.c
356 mod_unifont_la_LDFLAGS = \
357         -module \
358         -avoid-version
359
360 if BUILD_ENABLE_FONT_FREETYPE2
361 module_LTLIBRARIES += mod-freetype2.la
362 endif
363
364 mod_freetype2_la_SOURCES = \
365         $(SHL_DLIST) \
366         $(SHL_HASHTABLE) \
367         src/kmscon_module_interface.h \
368         src/githead.h \
369         src/font_freetype2.c \
370         src/kmscon_mod_freetype2.c
371 mod_freetype2_la_CPPFLAGS = \
372         $(AM_CPPFLAGS) \
373         $(FREETYPE2_CFLAGS)
374 mod_freetype2_la_LIBADD = \
375         $(FREETYPE2_LIBS) \
376         -lpthread \
377         libtsm.la
378 mod_freetype2_la_LDFLAGS = \
379         -module \
380         -avoid-version
381
382 if BUILD_ENABLE_FONT_PANGO
383 module_LTLIBRARIES += mod-pango.la
384 endif
385
386 mod_pango_la_SOURCES = \
387         $(SHL_DLIST) \
388         $(SHL_HASHTABLE) \
389         src/kmscon_module_interface.h \
390         src/githead.h \
391         src/font_pango.c \
392         src/kmscon_mod_pango.c
393 mod_pango_la_CPPFLAGS = \
394         $(AM_CPPFLAGS) \
395         $(PANGO_CFLAGS)
396 mod_pango_la_LIBADD = \
397         $(PANGO_LIBS) \
398         -lpthread \
399         libtsm.la
400 mod_pango_la_LDFLAGS = \
401         -module \
402         -avoid-version
403
404 if BUILD_ENABLE_RENDERER_BBULK
405 module_LTLIBRARIES += mod-bbulk.la
406 endif
407
408 mod_bbulk_la_SOURCES = \
409         src/kmscon_module_interface.h \
410         src/githead.h \
411         src/text_bbulk.c \
412         src/kmscon_mod_bbulk.c
413 mod_bbulk_la_LDFLAGS = \
414         -module \
415         -avoid-version
416
417 if BUILD_ENABLE_RENDERER_GLTEX
418 module_LTLIBRARIES += mod-gltex.la
419 endif
420
421 mod_gltex_la_SOURCES = \
422         src/kmscon_module_interface.h \
423         src/githead.h \
424         src/text_gltex.c \
425         src/static_gl.h \
426         src/static_gl_math.c \
427         src/static_gl_shader.c \
428         src/kmscon_mod_gltex.c
429 nodist_mod_gltex_la_SOURCES = \
430         src/static_shaders.c
431 mod_gltex_la_CPPFLAGS = \
432         $(AM_CPPFLAGS) \
433         $(GLES2_CFLAGS)
434 mod_gltex_la_LIBADD = \
435         $(GLES2_LIBS)
436 mod_gltex_la_LDFLAGS = \
437         -module \
438         -avoid-version
439
440 #
441 # Binaries
442 # These are the sources for the main binaries and test programs. They mostly
443 # consists of a single source file only and include all the libraries that are
444 # built as part of kmscon.
445 #
446
447 if BUILD_ENABLE_KMSCON
448 bin_PROGRAMS += kmscon
449 check_PROGRAMS += \
450         test_output \
451         test_vt \
452         test_input \
453         test_key
454 MANPAGES += docs/man/kmscon.1
455 endif
456
457 kmscon_SOURCES = \
458         $(SHL_DLIST) \
459         $(SHL_MISC) \
460         $(SHL_ARRAY) \
461         $(SHL_HASHTABLE) \
462         $(SHL_RING) \
463         $(SHL_TIMER) \
464         $(SHL_HOOK) \
465         $(SHL_REGISTER) \
466         src/githead.h \
467         src/conf.h \
468         src/conf.c \
469         src/log.h \
470         src/log.c \
471         src/pty.h \
472         src/pty.c \
473         src/font.h \
474         src/font.c \
475         src/font_8x16.c \
476         src/text.h \
477         src/text.c \
478         src/text_bblit.c \
479         src/kmscon_module_interface.h \
480         src/kmscon_module.h \
481         src/kmscon_module.c \
482         src/kmscon_terminal.h \
483         src/kmscon_dummy.h \
484         src/kmscon_cdev.h \
485         src/kmscon_seat.h \
486         src/kmscon_seat.c \
487         src/kmscon_conf.h \
488         src/kmscon_conf.c \
489         src/kmscon_main.c
490 nodist_kmscon_SOURCES =
491
492 kmscon_CPPFLAGS = \
493         $(AM_CPPFLAGS) \
494         $(XKBCOMMON_CFLAGS)
495 kmscon_LDADD = \
496         $(XKBCOMMON_LIBS) \
497         libeloop.la \
498         libuterm.la \
499         -lpthread \
500         -ldl
501 kmscon_LDFLAGS = \
502         -rdynamic
503
504 if BUILD_ENABLE_SESSION_DUMMY
505 kmscon_SOURCES += src/kmscon_dummy.c
506 endif
507
508 if BUILD_ENABLE_SESSION_TERMINAL
509 kmscon_SOURCES += src/kmscon_terminal.c
510 kmscon_LDADD += libtsm.la
511 endif
512
513 if BUILD_ENABLE_SESSION_CDEV
514 kmscon_SOURCES += src/kmscon_cdev.c
515 kmscon_CPPFLAGS += $(FUSE_CFLAGS)
516 kmscon_LDADD += $(FUSE_LIBS)
517 endif
518
519 #
520 # Wayland Terminal
521 #
522
523 if BUILD_ENABLE_WLTERM
524 bin_PROGRAMS += wlterm
525 endif
526
527 wlterm_SOURCES = \
528         $(SHL_MISC) \
529         $(SHL_ARRAY) \
530         $(SHL_DLIST) \
531         $(SHL_HOOK) \
532         src/wlt_main.h \
533         src/wlt_main.c \
534         src/wlt_toolkit.h \
535         src/wlt_toolkit.c \
536         src/wlt_theme.h \
537         src/wlt_theme.c \
538         src/wlt_terminal.h \
539         src/wlt_terminal.c \
540         src/log.h \
541         src/log.c \
542         src/conf.h \
543         src/conf.c \
544         src/pty.h \
545         src/pty.c
546 wlterm_CPPFLAGS = \
547         $(AM_CPPFLAGS) \
548         $(WAYLAND_CFLAGS) \
549         $(XKBCOMMON_CFLAGS)
550 wlterm_LDADD = \
551         $(WAYLAND_LIBS) \
552         $(XKBCOMMON_LIBS) \
553         libeloop.la \
554         libtsm.la \
555         -lpthread
556
557 #
558 # Tests
559 #
560
561 test_sources = \
562         src/log.h \
563         src/log.c \
564         src/conf.h \
565         src/conf.c \
566         tests/test_include.h
567 test_cflags = \
568         $(XKBCOMMON_CFLAGS)
569 test_libs = \
570         $(XKBCOMMON_LIBS) \
571         libeloop.la
572
573 test_output_SOURCES = \
574         $(test_sources) \
575         tests/test_output.c
576 test_output_CPPFLAGS = \
577         $(AM_CPPFLAGS) \
578         $(test_cflags)
579 test_output_LDADD = \
580         $(test_libs) \
581         libuterm.la
582
583 test_vt_SOURCES = \
584         $(test_sources) \
585         tests/test_vt.c
586 test_vt_CPPFLAGS = \
587         $(AM_CPPFLAGS) \
588         $(test_cflags)
589 test_vt_LDADD = \
590         $(test_libs) \
591         libuterm.la
592
593 test_input_SOURCES = \
594         $(test_sources) \
595         tests/test_input.c
596 test_input_CPPFLAGS = \
597         $(AM_CPPFLAGS) \
598         $(test_cflags)
599 test_input_LDADD = \
600         $(test_libs) \
601         libuterm.la
602
603 test_key_SOURCES = \
604         $(test_sources) \
605         tests/test_key.c
606 test_key_CPPFLAGS = \
607         $(AM_CPPFLAGS) \
608         $(test_cflags)
609 test_key_LDADD = \
610         $(test_libs)
611
612 #
613 # Manpages
614 #
615
616 man_MANS =
617 EXTRA_DIST += ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,$(MANPAGES)}}}}
618 CLEANFILES += $(MANPAGES) $(MANPAGES_ALIASES) .man_fixup
619
620 if BUILD_HAVE_XSLTPROC
621 if BUILD_HAVE_MANPAGES_STYLESHEET
622
623 man_MANS += $(MANPAGES) $(MANPAGES_ALIASES)
624
625 XSLTPROC_FLAGS = \
626         --stringparam man.authors.section.enabled 0 \
627         --stringparam man.copyright.section.enabled 0 \
628         --stringparam funcsynopsis.style ansi \
629         --stringparam man.output.quietly 1 \
630         --nonet
631
632 XSLTPROC_PROCESS_MAN = \
633         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
634         $(XSLTPROC) -o "$@" $(XSLTPROC_FLAGS) $(BUILD_MANPAGES_STYLESHEET) "$<" && \
635         touch .man_fixup
636
637 # Force .man_fixup if $(MANPAGES) are not built
638 .man_fixup: | $(MANPAGES)
639         @touch .man_fixup
640
641 $(MANPAGES_ALIASES): $(MANPAGES) .man_fixup
642         $(AM_V_GEN)if test -n "$@" ; then $(SED) -i -e 's/^\.so \([a-z_]\+\)\.\([0-9]\)$$/\.so man\2\/\1\.\2/' "$@" ; fi
643
644 docs/man/%.1: docs/man/%.xml
645         $(XSLTPROC_PROCESS_MAN)
646
647 docs/man/%.3: docs/man/%.xml
648         $(XSLTPROC_PROCESS_MAN)
649
650 docs/man/%.5: docs/man/%.xml
651         $(XSLTPROC_PROCESS_MAN)
652
653 docs/man/%.7: docs/man/%.xml
654         $(XSLTPROC_PROCESS_MAN)
655
656 endif # BUILD_HAVE_MANPAGES_STYLESHEET
657 endif # BUILD_HAVE_XSLTPROC
658
659 #
660 # Phony targets
661 #
662
663 .PHONY: $(TPHONY)