build: move vt.[hc] to libuterm
[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         docs/reference
10 EXTRA_DIST = \
11         README \
12         TODO \
13         COPYING
14 CLEANFILES =
15 include_HEADERS = 
16
17 #
18 # Build targets
19 #
20 # kmscon: Main kmscon program
21 # test_output: Test program for the display graphics subsystem
22 # test_vt: Test program for the VT subsystem
23 # test_input: Test program for the input subsystem
24 # libkmscon-core: Static core library for kmscon and test programs
25 # libkmscon-static: Static library for all subsystems
26 # genshader: Program used to convert shaders into C-source files
27 #
28
29 bin_PROGRAMS = \
30         kmscon
31 check_PROGRAMS = \
32         test_output \
33         test_vt \
34         test_input
35 noinst_PROGRAMS = \
36         genshader
37 noinst_LTLIBRARIES = \
38         libkmscon-core.la \
39         libkmscon-static.la
40 lib_LTLIBRARIES = \
41         libeloop.la \
42         libuterm.la
43
44 #
45 # Default CFlags
46 # Make all files include "config.h" by default. This shouldn't cause any
47 # problems and we cannot forget to include it anymore.
48 #
49 # Also make the linker discard all unused symbols as we are not building a
50 # shared library.
51 #
52 # When compiling in debug mode, we disable optimization and enable debug symbols
53 # so debugging with gdb is easier.
54 #
55
56 AM_CFLAGS = \
57         -Wall
58 AM_CPPFLAGS = \
59         -include $(top_builddir)/config.h \
60         -I $(srcdir)/src \
61         -I $(srcdir)/external
62 AM_LDFLAGS = \
63         -Wl,--as-needed
64
65 if DEBUG
66 AM_CFLAGS += -O0 -g
67 else
68 AM_CFLAGS += -O2
69 endif
70
71 #
72 # Shaders
73 # As there is no need to modify shaders at run-time, we statically compile them
74 # into object files. As autotools would ignore them, we need to add them to
75 # EXTRA_DIST.
76 # The program that converts the shaders into C-source files is "genshader". It's
77 # pretty simple and just creates a string with the shader source as content.
78 #
79
80 EXTRA_DIST += \
81         src/output_shader_def.vert \
82         src/output_shader_def.frag \
83         src/output_shader_tex.vert \
84         src/output_shader_tex.frag
85 CLEANFILES += \
86         src/output_shaders.c
87
88 nodist_genshader_SOURCES = \
89         src/genshader.c
90
91 src/output_shaders.c: \
92                 src/output_shader_def.vert \
93                 src/output_shader_def.frag \
94                 src/output_shader_tex.vert \
95                 src/output_shader_tex.frag \
96                 genshader$(EXEEXT)
97         ./genshader$(EXEEXT)
98
99 #
100 # libkmscon-core
101 # This static library contains all the source files used in kmscon. We build
102 # them as separate library to allow linking them to the test programs.
103 # Only "main.c" is not included here as it contains the main() function.
104 #
105
106 nodist_libkmscon_core_la_SOURCES = \
107         src/output_shaders.c
108
109 libkmscon_core_la_SOURCES = \
110         src/conf.c src/conf.h \
111         src/ui.c src/ui.h \
112         src/console.c src/console.h \
113         src/unicode.c src/unicode.h \
114         src/log.c src/log.h \
115         src/vte.c src/vte.h \
116         src/vte_charsets.c \
117         src/terminal.c src/terminal.h \
118         src/pty.c src/pty.h \
119         src/gl.h \
120         src/gl_math.c \
121         src/gl_shader.c \
122         src/font_pango.c
123
124 if USE_PANGO
125 libkmscon_core_la_SOURCES += \
126         src/font_pango.c src/font.h
127 else
128 libkmscon_core_la_SOURCES += \
129         src/font_freetype.c src/font.h
130 endif
131
132 libkmscon_core_la_CPPFLAGS = \
133         $(AM_CPPFLAGS) \
134         $(SYSTEMD_CFLAGS) \
135         $(OPENGL_CFLAGS) \
136         $(PANGO_CFLAGS) \
137         $(FREETYPE2_CFLAGS) \
138         $(GLIB_CFLAGS)
139 libkmscon_core_la_LIBADD = \
140         $(SYSTEMD_LIBS) \
141         $(OPENGL_LIBS) \
142         $(PANGO_LIBS) \
143         $(FREETYPE2_LIBS) \
144         $(GLIB_LIBS) \
145         -lpthread \
146         libeloop.la \
147         libuterm.la
148
149 #
150 # libuterm
151 # The uterm library provides helpers to creater terminals in user-space. They
152 # are not limited to text-based terminals but rather provide graphics contexts
153 # so arbitrary output can be displayed. Additionally, they provide VT
154 # abstractions and an input layer
155 #
156
157 libuterm_la_SOURCES = \
158         src/uterm.h \
159         src/uterm_internal.h \
160         src/uterm_video.c \
161         src/uterm_video_drm.c \
162         src/uterm_video_fbdev.c \
163         src/uterm_monitor.c \
164         src/uterm_input.c \
165         src/uterm_vt.c \
166         src/vt.c src/vt.h
167
168 libuterm_la_CPPFLAGS = \
169         $(AM_CPPFLAGS) \
170         $(DRM_CFLAGS) \
171         $(EGL_CFLAGS) \
172         $(GBM_CFLAGS) \
173         $(OPENGL_CFLAGS) \
174         $(UDEV_CFLAGS)
175 libuterm_la_LIBADD = \
176         $(DRM_LIBS) \
177         $(EGL_LIBS) \
178         $(GBM_LIBS) \
179         $(OPENGL_LIBS) \
180         $(UDEV_LIBS) \
181         libkmscon-static.la \
182         libeloop.la
183 libuterm_la_LDFLAGS = \
184         -version-info 1:0:0
185
186 if USE_XKBCOMMON
187 libuterm_la_SOURCES += \
188         src/uterm_input_xkb.c
189 libuterm_la_CPPFLAGS += \
190         $(XKBCOMMON_CFLAGS) \
191         $(XPROTO_CFLAGS)
192 libuterm_la_LIBADD += \
193         $(XPROTO_LIBS) \
194         $(XKBCOMMON_LIBS)
195 else
196 libuterm_la_SOURCES += \
197         src/uterm_input_dumb.c
198 endif
199
200 include_HEADERS += \
201         src/uterm.h
202
203 #
204 # libeloop
205 # This library contains the whole event-loop implementation of kmscon. It is
206 # compiled into a separate object to allow using it in several other programs.
207 #
208
209 libeloop_la_SOURCES = \
210         src/eloop.h \
211         src/eloop.c
212
213 libeloop_la_CPPFLAGS = \
214         $(AM_CPPFLAGS)
215 libeloop_la_LIBADD = \
216         libkmscon-static.la
217 libeloop_la_LDFLAGS = \
218         -version-info 1:0:0
219
220 include_HEADERS += \
221         src/eloop.h
222
223 #
224 # libkmscon-static
225 # This static library contains all small helpers that are used in several other
226 # libraries and programs that are part of kmscon. To avoid putting these small
227 # pieces into a library and thus having to keep backwards compatibility, we
228 # simply link them statically into all other libraries/programs.
229 #
230
231 libkmscon_static_la_SOURCES = \
232         external/imKStoUCS.h \
233         external/imKStoUCS.c \
234         src/static_llog.h \
235         src/static_misc.h \
236         src/static_misc.c
237
238 libkmscon_static_la_CPPFLAGS = \
239         $(AM_CPPFLAGS) \
240         $(GLIB_CFLAGS)
241 libkmscon_static_la_LIBADD = \
242         $(GLIB_LIBS)
243
244 #
245 # Binaries
246 # These are the sources for the main binaries and test programs. They mostly
247 # consists of a single source file only and include all the libraries that are
248 # built as part of kmscon.
249 #
250
251 kmscon_SOURCES = src/main.c
252 kmscon_LDADD = \
253         libuterm.la \
254         libeloop.la \
255         libkmscon-core.la \
256         libkmscon-static.la
257
258 test_output_SOURCES = tests/test_output.c tests/test_include.h
259 test_output_LDADD = libkmscon-core.la
260
261 test_vt_SOURCES = tests/test_vt.c
262 test_vt_LDADD = libkmscon-core.la
263
264 test_input_SOURCES = tests/test_input.c
265 test_input_LDADD = libkmscon-core.la