uterm: share drm_mode between dumb and drm backend
[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 # add shared sources only once
302 UTERM_DRM_SHARED_SRC = \
303         src/uterm_drm_shared_internal.h \
304         src/uterm_drm_shared.c
305 if BUILD_ENABLE_VIDEO_DUMB
306 libuterm_la_SOURCES += $(UTERM_DRM_SHARED_SRC)
307 else
308 if BUILD_ENABLE_VIDEO_DRM
309 libuterm_la_SOURCES += $(UTERM_DRM_SHARED_SRC)
310 endif
311 endif
312
313 #
314 # Shaders
315 # As there is no need to modify shaders at run-time, we statically compile them
316 # into object files. As autotools would ignore them, we need to add them to
317 # EXTRA_DIST.
318 # The program that converts the shaders into C-source files is "genshader". It's
319 # pretty simple and just creates a string with the shader source as content.
320 #
321
322 SHADERS = \
323         $(srcdir)/src/static_fill.vert \
324         $(srcdir)/src/static_fill.frag \
325         $(srcdir)/src/static_blend.vert \
326         $(srcdir)/src/static_blend.frag \
327         $(srcdir)/src/static_blit.vert \
328         $(srcdir)/src/static_blit.frag \
329         $(srcdir)/src/static_gltex.vert \
330         $(srcdir)/src/static_gltex.frag
331
332 EXTRA_DIST += $(SHADERS)
333 CLEANFILES += src/static_shaders.c
334 genshader_SOURCES = src/genshader.c
335
336 src/static_shaders.c: $(SHADERS) genshader$(EXEEXT)
337         $(AM_V_GEN)./genshader$(EXEEXT) src/static_shaders.c $(SHADERS)
338
339 #
340 # Unifont Generator
341 # This generates the unifont sources from raw hex-encoded font data.
342 #
343
344 UNIFONT = src/font_unifont_data.hex
345
346 EXTRA_DIST += $(UNIFONT)
347 CLEANFILES += src/font_unifont_data.c
348 genunifont_SOURCES = src/genunifont.c
349
350 src/font_unifont_data.c: $(UNIFONT) genunifont$(EXEEXT)
351         $(AM_V_GEN)./genunifont$(EXEEXT) src/font_unifont_data.c $(UNIFONT)
352
353 #
354 # Kmscon Modules
355 #
356
357 if BUILD_ENABLE_FONT_UNIFONT
358 module_LTLIBRARIES += mod-unifont.la
359 endif
360
361 mod_unifont_la_SOURCES = \
362         src/kmscon_module_interface.h \
363         src/githead.h \
364         src/font_unifont.c \
365         src/kmscon_mod_unifont.c
366 nodist_mod_unifont_la_SOURCES = \
367         src/font_unifont_data.c
368 mod_unifont_la_LDFLAGS = \
369         -module \
370         -avoid-version
371
372 if BUILD_ENABLE_FONT_FREETYPE2
373 module_LTLIBRARIES += mod-freetype2.la
374 endif
375
376 mod_freetype2_la_SOURCES = \
377         $(SHL_DLIST) \
378         $(SHL_HASHTABLE) \
379         src/kmscon_module_interface.h \
380         src/githead.h \
381         src/font_freetype2.c \
382         src/kmscon_mod_freetype2.c
383 mod_freetype2_la_CPPFLAGS = \
384         $(AM_CPPFLAGS) \
385         $(FREETYPE2_CFLAGS)
386 mod_freetype2_la_LIBADD = \
387         $(FREETYPE2_LIBS) \
388         -lpthread \
389         libtsm.la
390 mod_freetype2_la_LDFLAGS = \
391         -module \
392         -avoid-version
393
394 if BUILD_ENABLE_FONT_PANGO
395 module_LTLIBRARIES += mod-pango.la
396 endif
397
398 mod_pango_la_SOURCES = \
399         $(SHL_DLIST) \
400         $(SHL_HASHTABLE) \
401         src/kmscon_module_interface.h \
402         src/githead.h \
403         src/font_pango.c \
404         src/kmscon_mod_pango.c
405 mod_pango_la_CPPFLAGS = \
406         $(AM_CPPFLAGS) \
407         $(PANGO_CFLAGS)
408 mod_pango_la_LIBADD = \
409         $(PANGO_LIBS) \
410         -lpthread \
411         libtsm.la
412 mod_pango_la_LDFLAGS = \
413         -module \
414         -avoid-version
415
416 if BUILD_ENABLE_RENDERER_BBULK
417 module_LTLIBRARIES += mod-bbulk.la
418 endif
419
420 mod_bbulk_la_SOURCES = \
421         src/kmscon_module_interface.h \
422         src/githead.h \
423         src/text_bbulk.c \
424         src/kmscon_mod_bbulk.c
425 mod_bbulk_la_LDFLAGS = \
426         -module \
427         -avoid-version
428
429 if BUILD_ENABLE_RENDERER_GLTEX
430 module_LTLIBRARIES += mod-gltex.la
431 endif
432
433 mod_gltex_la_SOURCES = \
434         src/kmscon_module_interface.h \
435         src/githead.h \
436         src/text_gltex.c \
437         src/static_gl.h \
438         src/static_gl_math.c \
439         src/static_gl_shader.c \
440         src/kmscon_mod_gltex.c
441 nodist_mod_gltex_la_SOURCES = \
442         src/static_shaders.c
443 mod_gltex_la_CPPFLAGS = \
444         $(AM_CPPFLAGS) \
445         $(GLES2_CFLAGS)
446 mod_gltex_la_LIBADD = \
447         $(GLES2_LIBS)
448 mod_gltex_la_LDFLAGS = \
449         -module \
450         -avoid-version
451
452 #
453 # Binaries
454 # These are the sources for the main binaries and test programs. They mostly
455 # consists of a single source file only and include all the libraries that are
456 # built as part of kmscon.
457 #
458
459 if BUILD_ENABLE_KMSCON
460 bin_PROGRAMS += kmscon
461 check_PROGRAMS += \
462         test_output \
463         test_vt \
464         test_input \
465         test_key
466 MANPAGES += docs/man/kmscon.1
467 endif
468
469 kmscon_SOURCES = \
470         $(SHL_DLIST) \
471         $(SHL_MISC) \
472         $(SHL_ARRAY) \
473         $(SHL_HASHTABLE) \
474         $(SHL_RING) \
475         $(SHL_TIMER) \
476         $(SHL_HOOK) \
477         $(SHL_REGISTER) \
478         src/githead.h \
479         src/conf.h \
480         src/conf.c \
481         src/log.h \
482         src/log.c \
483         src/pty.h \
484         src/pty.c \
485         src/font.h \
486         src/font.c \
487         src/font_8x16.c \
488         src/text.h \
489         src/text.c \
490         src/text_bblit.c \
491         src/kmscon_module_interface.h \
492         src/kmscon_module.h \
493         src/kmscon_module.c \
494         src/kmscon_terminal.h \
495         src/kmscon_dummy.h \
496         src/kmscon_cdev.h \
497         src/kmscon_seat.h \
498         src/kmscon_seat.c \
499         src/kmscon_conf.h \
500         src/kmscon_conf.c \
501         src/kmscon_main.c
502 nodist_kmscon_SOURCES =
503
504 kmscon_CPPFLAGS = \
505         $(AM_CPPFLAGS) \
506         $(XKBCOMMON_CFLAGS)
507 kmscon_LDADD = \
508         $(XKBCOMMON_LIBS) \
509         libeloop.la \
510         libuterm.la \
511         -lpthread \
512         -ldl
513 kmscon_LDFLAGS = \
514         -rdynamic
515
516 if BUILD_ENABLE_SESSION_DUMMY
517 kmscon_SOURCES += src/kmscon_dummy.c
518 endif
519
520 if BUILD_ENABLE_SESSION_TERMINAL
521 kmscon_SOURCES += src/kmscon_terminal.c
522 kmscon_LDADD += libtsm.la
523 endif
524
525 if BUILD_ENABLE_SESSION_CDEV
526 kmscon_SOURCES += src/kmscon_cdev.c
527 kmscon_CPPFLAGS += $(FUSE_CFLAGS)
528 kmscon_LDADD += $(FUSE_LIBS)
529 endif
530
531 #
532 # Wayland Terminal
533 #
534
535 if BUILD_ENABLE_WLTERM
536 bin_PROGRAMS += wlterm
537 endif
538
539 wlterm_SOURCES = \
540         $(SHL_MISC) \
541         $(SHL_ARRAY) \
542         $(SHL_DLIST) \
543         $(SHL_HOOK) \
544         src/wlt_main.h \
545         src/wlt_main.c \
546         src/wlt_toolkit.h \
547         src/wlt_toolkit.c \
548         src/wlt_theme.h \
549         src/wlt_theme.c \
550         src/wlt_terminal.h \
551         src/wlt_terminal.c \
552         src/log.h \
553         src/log.c \
554         src/conf.h \
555         src/conf.c \
556         src/pty.h \
557         src/pty.c
558 wlterm_CPPFLAGS = \
559         $(AM_CPPFLAGS) \
560         $(WAYLAND_CFLAGS) \
561         $(XKBCOMMON_CFLAGS)
562 wlterm_LDADD = \
563         $(WAYLAND_LIBS) \
564         $(XKBCOMMON_LIBS) \
565         libeloop.la \
566         libtsm.la \
567         -lpthread
568
569 #
570 # Tests
571 #
572
573 test_sources = \
574         src/log.h \
575         src/log.c \
576         src/conf.h \
577         src/conf.c \
578         tests/test_include.h
579 test_cflags = \
580         $(XKBCOMMON_CFLAGS)
581 test_libs = \
582         $(XKBCOMMON_LIBS) \
583         libeloop.la
584
585 test_output_SOURCES = \
586         $(test_sources) \
587         tests/test_output.c
588 test_output_CPPFLAGS = \
589         $(AM_CPPFLAGS) \
590         $(test_cflags)
591 test_output_LDADD = \
592         $(test_libs) \
593         libuterm.la
594
595 test_vt_SOURCES = \
596         $(test_sources) \
597         tests/test_vt.c
598 test_vt_CPPFLAGS = \
599         $(AM_CPPFLAGS) \
600         $(test_cflags)
601 test_vt_LDADD = \
602         $(test_libs) \
603         libuterm.la
604
605 test_input_SOURCES = \
606         $(test_sources) \
607         tests/test_input.c
608 test_input_CPPFLAGS = \
609         $(AM_CPPFLAGS) \
610         $(test_cflags)
611 test_input_LDADD = \
612         $(test_libs) \
613         libuterm.la
614
615 test_key_SOURCES = \
616         $(test_sources) \
617         tests/test_key.c
618 test_key_CPPFLAGS = \
619         $(AM_CPPFLAGS) \
620         $(test_cflags)
621 test_key_LDADD = \
622         $(test_libs)
623
624 #
625 # Manpages
626 #
627
628 man_MANS =
629 EXTRA_DIST += ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,$(MANPAGES)}}}}
630 CLEANFILES += $(MANPAGES) $(MANPAGES_ALIASES) .man_fixup
631
632 if BUILD_HAVE_XSLTPROC
633 if BUILD_HAVE_MANPAGES_STYLESHEET
634
635 man_MANS += $(MANPAGES) $(MANPAGES_ALIASES)
636
637 XSLTPROC_FLAGS = \
638         --stringparam man.authors.section.enabled 0 \
639         --stringparam man.copyright.section.enabled 0 \
640         --stringparam funcsynopsis.style ansi \
641         --stringparam man.output.quietly 1 \
642         --nonet
643
644 XSLTPROC_PROCESS_MAN = \
645         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
646         $(XSLTPROC) -o "$@" $(XSLTPROC_FLAGS) $(BUILD_MANPAGES_STYLESHEET) "$<" && \
647         touch .man_fixup
648
649 # Force .man_fixup if $(MANPAGES) are not built
650 .man_fixup: | $(MANPAGES)
651         @touch .man_fixup
652
653 $(MANPAGES_ALIASES): $(MANPAGES) .man_fixup
654         $(AM_V_GEN)if test -n "$@" ; then $(SED) -i -e 's/^\.so \([a-z_]\+\)\.\([0-9]\)$$/\.so man\2\/\1\.\2/' "$@" ; fi
655
656 docs/man/%.1: docs/man/%.xml
657         $(XSLTPROC_PROCESS_MAN)
658
659 docs/man/%.3: docs/man/%.xml
660         $(XSLTPROC_PROCESS_MAN)
661
662 docs/man/%.5: docs/man/%.xml
663         $(XSLTPROC_PROCESS_MAN)
664
665 docs/man/%.7: docs/man/%.xml
666         $(XSLTPROC_PROCESS_MAN)
667
668 endif # BUILD_HAVE_MANPAGES_STYLESHEET
669 endif # BUILD_HAVE_XSLTPROC
670
671 #
672 # Phony targets
673 #
674
675 .PHONY: $(TPHONY)