Commit | Line | Data |
---|---|---|
53118ba6 | 1 | # SPDX-FileCopyrightText: 2019-2023 EfficiOS, Inc. |
0235b0db MJ |
2 | # SPDX-License-Identifier: MIT |
3 | ||
ed615696 MJ |
4 | # Build the current dir containing the library and plugins before the cli and |
5 | # bindings. | |
578e048b | 6 | SUBDIRS = \ |
86ef6105 | 7 | . \ |
6244258c MJ |
8 | cli |
9 | ||
10 | if ENABLE_PYTHON_BINDINGS | |
11 | SUBDIRS += bindings/python/bt2 | |
12 | endif | |
578e048b | 13 | |
ed615696 MJ |
14 | ## This target generates an include file that contains the git version |
15 | ## string of the current branch, it must be continuously updated when | |
16 | ## we build in the git repo and shipped in dist tarballs to reflect the | |
17 | ## status of the tree when it was generated. If the tree is clean and | |
18 | ## the current commit is a tag starting with "v", consider this a | |
19 | ## release version and set an empty git version. | |
20 | ||
21 | version_verbose = $(version_verbose_@AM_V@) | |
22 | version_verbose_ = $(version_verbose_@AM_DEFAULT_V@) | |
23 | version_verbose_0 = @echo " GEN " $@; | |
24 | ||
25 | common/version.i: | |
26 | $(version_verbose)GREP=$(GREP) SED=$(SED) TOP_SRCDIR="$(top_srcdir)" $(SHELL) $(srcdir)/gen-version-i.sh | |
27 | ||
28 | dist_noinst_SCRIPTS = gen-version-i.sh | |
29 | ||
30 | # Ensure version.i is generated before any code is built. | |
31 | BUILT_SOURCES = common/version.i | |
32 | ||
33 | ## | |
34 | ## version.i is defined as a .PHONY target even if it's a real file, | |
35 | ## we want the target to be re-run on every make. | |
36 | ## | |
37 | .PHONY: common/version.i | |
38 | ||
39 | CLEANFILES = common/version.i.tmp | |
40 | ||
41 | ## | |
42 | ## Only clean "version.i" on dist-clean, we need to keep it on regular | |
43 | ## clean when it's part of a dist tarball. | |
44 | ## | |
45 | DISTCLEANFILES = common/version.i | |
46 | ||
86ef6105 MJ |
47 | # |
48 | # Convenience libraries | |
49 | # | |
50 | ||
51 | noinst_LTLIBRARIES = \ | |
52 | argpar/libargpar.la \ | |
53 | autodisc/libautodisc.la \ | |
e0f8968a | 54 | clock-correlation-validator/libclock-correlation-validator.la \ |
ed615696 | 55 | common/libcommon.la \ |
86ef6105 | 56 | compat/libcompat.la \ |
89052002 | 57 | cpp-common/libcpp-common.la \ |
7f66516e | 58 | cpp-common/vendor/fmt/libfmt.la \ |
86ef6105 MJ |
59 | ctfser/libctfser.la \ |
60 | fd-cache/libfd-cache.la \ | |
61 | logging/liblogging.la \ | |
62 | param-parse/libparam-parse.la \ | |
6244258c MJ |
63 | plugins/common/muxing/libmuxing.la \ |
64 | plugins/common/param-validation/libparam-validation.la \ | |
65 | plugins/ctf/common/metadata/libctf-ast.la \ | |
66 | plugins/ctf/common/metadata/libctf-parser.la \ | |
86ef6105 MJ |
67 | string-format/libstring-format.la |
68 | ||
ed615696 | 69 | |
86ef6105 MJ |
70 | argpar_libargpar_la_SOURCES = \ |
71 | argpar/argpar.c \ | |
72 | argpar/argpar.h | |
73 | ||
74 | autodisc_libautodisc_la_SOURCES = \ | |
75 | autodisc/autodisc.c \ | |
76 | autodisc/autodisc.h | |
77 | ||
e0f8968a SM |
78 | clock_correlation_validator_libclock_correlation_validator_la_SOURCES = \ |
79 | clock-correlation-validator/clock-correlation-validator.cpp \ | |
80 | clock-correlation-validator/clock-correlation-validator.h \ | |
81 | clock-correlation-validator/clock-correlation-validator.hpp | |
82 | ||
ed615696 | 83 | common_libcommon_la_SOURCES = \ |
a0bc1faf | 84 | common/align.h \ |
ed615696 MJ |
85 | common/assert.c \ |
86 | common/assert.h \ | |
87 | common/common.c \ | |
88 | common/common.h \ | |
a0bc1faf SM |
89 | common/list.h \ |
90 | common/macros.h \ | |
91 | common/mmap-align.h \ | |
92 | common/safe.h \ | |
ed615696 | 93 | common/uuid.c \ |
a0bc1faf SM |
94 | common/uuid.h \ |
95 | common/version.h \ | |
96 | common/version.i | |
ed615696 MJ |
97 | |
98 | common_libcommon_la_CPPFLAGS = \ | |
99 | $(AM_CPPFLAGS) \ | |
100 | -DBABELTRACE_PLUGINS_DIR=\"$(BABELTRACE_PLUGINS_DIR)\" | |
101 | ||
86ef6105 MJ |
102 | compat_libcompat_la_SOURCES = \ |
103 | compat/bitfield.h \ | |
104 | compat/compiler.h \ | |
105 | compat/endian.h \ | |
106 | compat/fcntl.h \ | |
107 | compat/glib.h \ | |
108 | compat/limits.h \ | |
109 | compat/memstream.h \ | |
110 | compat/mman.c \ | |
111 | compat/mman.h \ | |
112 | compat/socket.h \ | |
113 | compat/stdio.h \ | |
114 | compat/stdlib.h \ | |
115 | compat/string.h \ | |
116 | compat/time.h \ | |
117 | compat/unistd.h \ | |
118 | compat/utc.h | |
119 | ||
89052002 SM |
120 | cpp_common_libcpp_common_la_SOURCES = \ |
121 | cpp-common/bt2/borrowed-object-iterator.hpp \ | |
122 | cpp-common/bt2/borrowed-object-proxy.hpp \ | |
123 | cpp-common/bt2/borrowed-object.hpp \ | |
124 | cpp-common/bt2/clock-class.hpp \ | |
125 | cpp-common/bt2/clock-snapshot.hpp \ | |
212313d9 | 126 | cpp-common/bt2/component-class-dev.hpp \ |
cb036945 | 127 | cpp-common/bt2/component-class.hpp \ |
89052002 | 128 | cpp-common/bt2/component-port.hpp \ |
14d33b5a | 129 | cpp-common/bt2/graph.hpp \ |
a65c7bf4 | 130 | cpp-common/bt2/error.hpp \ |
89052002 SM |
131 | cpp-common/bt2/exc.hpp \ |
132 | cpp-common/bt2/field-class.hpp \ | |
133 | cpp-common/bt2/field-path.hpp \ | |
134 | cpp-common/bt2/field.hpp \ | |
135 | cpp-common/bt2/integer-range-set.hpp \ | |
136 | cpp-common/bt2/integer-range.hpp \ | |
22309699 | 137 | cpp-common/bt2/internal/comp-cls-bridge.hpp \ |
89052002 SM |
138 | cpp-common/bt2/internal/utils.hpp \ |
139 | cpp-common/bt2/logging.hpp \ | |
140 | cpp-common/bt2/message-array.hpp \ | |
141 | cpp-common/bt2/message-iterator.hpp \ | |
142 | cpp-common/bt2/message.hpp \ | |
143 | cpp-common/bt2/optional-borrowed-object.hpp \ | |
144 | cpp-common/bt2/plugin-dev.hpp \ | |
c40b7b8a | 145 | cpp-common/bt2/plugin-load.hpp \ |
4993dc41 | 146 | cpp-common/bt2/plugin-set.hpp \ |
3641e3ec | 147 | cpp-common/bt2/plugin.hpp \ |
89052002 | 148 | cpp-common/bt2/private-query-executor.hpp \ |
230ec73a | 149 | cpp-common/bt2/query-executor.hpp \ |
89052002 SM |
150 | cpp-common/bt2/raw-value-proxy.hpp \ |
151 | cpp-common/bt2/self-component-class.hpp \ | |
152 | cpp-common/bt2/self-component-port.hpp \ | |
153 | cpp-common/bt2/self-message-iterator-configuration.hpp \ | |
154 | cpp-common/bt2/self-message-iterator.hpp \ | |
155 | cpp-common/bt2/shared-object.hpp \ | |
156 | cpp-common/bt2/trace-ir.hpp \ | |
157 | cpp-common/bt2/type-traits.hpp \ | |
158 | cpp-common/bt2/value.hpp \ | |
159 | cpp-common/bt2/wrap.hpp \ | |
160 | cpp-common/bt2c/align.hpp \ | |
161 | cpp-common/bt2c/c-string-view.hpp \ | |
162 | cpp-common/bt2c/call.hpp \ | |
237a48ad | 163 | cpp-common/bt2c/contains.hpp \ |
89052002 SM |
164 | cpp-common/bt2c/dummy.cpp \ |
165 | cpp-common/bt2c/endian.hpp \ | |
166 | cpp-common/bt2c/exc.hpp \ | |
7cf8258b | 167 | cpp-common/bt2c/fmt.hpp \ |
89052002 | 168 | cpp-common/bt2c/glib-up.hpp \ |
89052002 SM |
169 | cpp-common/bt2c/libc-up.hpp \ |
170 | cpp-common/bt2c/logging.hpp \ | |
171 | cpp-common/bt2c/prio-heap.hpp \ | |
172 | cpp-common/bt2c/read-fixed-len-int.hpp \ | |
173 | cpp-common/bt2c/safe-ops.hpp \ | |
a111fb7d | 174 | cpp-common/bt2c/span.hpp \ |
89052002 SM |
175 | cpp-common/bt2c/std-int.hpp \ |
176 | cpp-common/bt2c/type-traits.hpp \ | |
177 | cpp-common/bt2c/uuid.hpp \ | |
178 | cpp-common/bt2c/vector.hpp \ | |
179 | cpp-common/bt2s/make-unique.hpp \ | |
180 | cpp-common/bt2s/optional.hpp \ | |
181 | cpp-common/bt2s/span.hpp \ | |
182 | cpp-common/bt2s/string-view.hpp \ | |
183 | cpp-common/vendor/nlohmann/json.hpp \ | |
184 | cpp-common/vendor/optional-lite/optional.hpp \ | |
185 | cpp-common/vendor/span-lite/span.hpp \ | |
a19a1879 | 186 | cpp-common/vendor/string-view-lite/string_view.hpp |
89052002 | 187 | |
7f66516e PP |
188 | cpp_common_vendor_fmt_libfmt_la_SOURCES = \ |
189 | cpp-common/vendor/fmt/args.h \ | |
190 | cpp-common/vendor/fmt/chrono.h \ | |
191 | cpp-common/vendor/fmt/color.h \ | |
192 | cpp-common/vendor/fmt/compile.h \ | |
193 | cpp-common/vendor/fmt/core.h \ | |
194 | cpp-common/vendor/fmt/format-inl.h \ | |
195 | cpp-common/vendor/fmt/format.cc \ | |
196 | cpp-common/vendor/fmt/format.h \ | |
197 | cpp-common/vendor/fmt/os.cc \ | |
198 | cpp-common/vendor/fmt/os.h \ | |
199 | cpp-common/vendor/fmt/ostream.h \ | |
200 | cpp-common/vendor/fmt/printf.h \ | |
201 | cpp-common/vendor/fmt/ranges.h \ | |
202 | cpp-common/vendor/fmt/std.h \ | |
203 | cpp-common/vendor/fmt/xchar.h | |
204 | ||
86ef6105 MJ |
205 | ctfser_libctfser_la_SOURCES = \ |
206 | ctfser/ctfser.c \ | |
207 | ctfser/ctfser.h | |
208 | ||
209 | fd_cache_libfd_cache_la_SOURCES = \ | |
210 | fd-cache/fd-cache.c \ | |
211 | fd-cache/fd-cache.h | |
212 | ||
213 | logging_liblogging_la_SOURCES = \ | |
214 | logging/comp-logging.h \ | |
71436ae4 SM |
215 | logging/log-api.c \ |
216 | logging/log-api.h \ | |
86ef6105 MJ |
217 | logging/log.h |
218 | ||
219 | param_parse_libparam_parse_la_SOURCES = \ | |
220 | param-parse/param-parse.c \ | |
221 | param-parse/param-parse.h | |
222 | ||
223 | string_format_libstring_format_la_SOURCES = \ | |
224 | string-format/format-plugin-comp-cls-name.c \ | |
225 | string-format/format-plugin-comp-cls-name.h \ | |
226 | string-format/format-error.c \ | |
227 | string-format/format-error.h | |
228 | ||
6244258c MJ |
229 | plugins_common_muxing_libmuxing_la_SOURCES = \ |
230 | plugins/common/muxing/muxing.c \ | |
231 | plugins/common/muxing/muxing.h | |
232 | ||
233 | plugins_common_param_validation_libparam_validation_la_SOURCES = \ | |
234 | plugins/common/param-validation/param-validation.c \ | |
235 | plugins/common/param-validation/param-validation.h | |
236 | ||
237 | # Set flags for the Bison based metadata parser | |
238 | # -t : instrument the parser | |
239 | # -d : produce a header | |
240 | # -v : verbose | |
241 | # -Wno-yacc : disable POSIX Yacc incompatibilities warnings | |
242 | AM_YFLAGS = \ | |
243 | -t -d -v -Wno-yacc | |
244 | ||
245 | plugins_ctf_common_metadata_libctf_parser_la_SOURCES = \ | |
5656cea5 PP |
246 | plugins/ctf/common/src/metadata/tsdl/lexer.lpp \ |
247 | plugins/ctf/common/src/metadata/tsdl/parser.ypp \ | |
248 | plugins/ctf/common/src/metadata/tsdl/objstack.cpp | |
6244258c MJ |
249 | |
250 | # scanner-symbols.h is included to prefix generated yy_* symbols with bt_. | |
251 | plugins_ctf_common_metadata_libctf_parser_la_CPPFLAGS = \ | |
252 | $(AM_CPPFLAGS) \ | |
5656cea5 | 253 | -include $(srcdir)/plugins/ctf/common/src/metadata/tsdl/scanner-symbols.hpp |
6244258c MJ |
254 | |
255 | # This library contains (mostly) generated code, silence some warnings that it | |
256 | # produces. | |
257 | plugins_ctf_common_metadata_libctf_parser_la_CXXFLAGS = \ | |
258 | $(AM_CXXFLAGS) \ | |
259 | -Wno-unused-function \ | |
260 | -Wno-null-dereference \ | |
261 | -Wno-missing-field-initializers \ | |
262 | -Wno-unused-parameter | |
263 | ||
264 | plugins_ctf_common_metadata_libctf_ast_la_SOURCES = \ | |
5656cea5 PP |
265 | plugins/ctf/common/src/metadata/tsdl/visitor-generate-ir.cpp \ |
266 | plugins/ctf/common/src/metadata/tsdl/visitor-semantic-validator.cpp \ | |
267 | plugins/ctf/common/src/metadata/tsdl/visitor-parent-links.cpp \ | |
268 | plugins/ctf/common/src/metadata/tsdl/ast.hpp \ | |
269 | plugins/ctf/common/src/metadata/tsdl/objstack.hpp \ | |
270 | plugins/ctf/common/src/metadata/tsdl/parser.hpp \ | |
271 | plugins/ctf/common/src/metadata/tsdl/parser-wrap.hpp \ | |
272 | plugins/ctf/common/src/metadata/tsdl/scanner.hpp \ | |
273 | plugins/ctf/common/src/metadata/tsdl/scanner-symbols.hpp \ | |
274 | plugins/ctf/common/src/metadata/tsdl/decoder.cpp \ | |
275 | plugins/ctf/common/src/metadata/tsdl/decoder.hpp \ | |
276 | plugins/ctf/common/src/metadata/tsdl/decoder-packetized-file-stream-to-buf.cpp \ | |
277 | plugins/ctf/common/src/metadata/tsdl/decoder-packetized-file-stream-to-buf.hpp \ | |
278 | plugins/ctf/common/src/metadata/tsdl/logging.cpp \ | |
279 | plugins/ctf/common/src/metadata/tsdl/logging.hpp \ | |
280 | plugins/ctf/common/src/metadata/tsdl/ctf-meta.hpp \ | |
281 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-visitors.hpp \ | |
282 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-validate.cpp \ | |
283 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-meanings.cpp \ | |
284 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-in-ir.cpp \ | |
285 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-default-clock-classes.cpp \ | |
286 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-text-array-sequence.cpp \ | |
287 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-alignments.cpp \ | |
288 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-value-storing-indexes.cpp \ | |
289 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-stream-class-config.cpp \ | |
290 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-warn-meaningless-header-fields.cpp \ | |
291 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-translate.cpp \ | |
292 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-resolve.cpp \ | |
293 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-configure-ir-trace.cpp \ | |
294 | plugins/ctf/common/src/metadata/tsdl/ctf-meta-configure-ir-trace.hpp | |
6244258c MJ |
295 | |
296 | if BABELTRACE_BUILD_WITH_MINGW | |
297 | plugins_ctf_common_metadata_libctf_ast_la_LIBADD = -lintl -liconv -lole32 | |
298 | endif | |
299 | ||
ed615696 | 300 | BUILT_SOURCES += \ |
5656cea5 | 301 | plugins/ctf/common/src/metadata/tsdl/parser.hpp |
6244258c | 302 | |
6244258c MJ |
303 | ALL_LOCAL = |
304 | ||
305 | if HAVE_BISON | |
306 | # We have bison: we can clean the generated parser files | |
307 | CLEANFILES += \ | |
5656cea5 PP |
308 | plugins/ctf/common/src/metadata/tsdl/parser.cpp \ |
309 | plugins/ctf/common/src/metadata/tsdl/parser.hpp \ | |
310 | plugins/ctf/common/src/metadata/tsdl/parser.output | |
6244258c MJ |
311 | else # HAVE_BISON |
312 | # Create target used to stop the build if we want to build the parser, | |
313 | # but we don't have the necessary tool to do so | |
314 | plugins/ctf/common/metadata/parser.cpp plugins/ctf/common/metadata/parser.hpp: plugins/ctf/common/metadata/parser.ypp | |
315 | @echo "Error: Cannot build target because bison is missing." | |
316 | @echo "Make sure bison is installed and run the configure script again." | |
317 | @false | |
318 | ||
319 | ALL_LOCAL += \ | |
320 | plugins/ctf/common/metadata/parser.cpp \ | |
321 | plugins/ctf/common/metadata/parser.hpp | |
322 | endif # HAVE_BISON | |
323 | ||
324 | if HAVE_FLEX | |
325 | # We have flex: we can clean the generated lexer files | |
326 | CLEANFILES += plugins/ctf/common/metadata/lexer.cpp | |
327 | else # HAVE_FLEX | |
328 | # Create target used to stop the build if we want to build the lexer, | |
329 | # but we don't have the necessary tool to do so | |
330 | plugins/ctf/common/metadata/lexer.cpp: plugins/ctf/common/metadata/lexer.lpp | |
331 | @echo "Error: Cannot build target because flex is missing." | |
332 | @echo "Make sure flex is installed and run the configure script again." | |
333 | @false | |
334 | ||
335 | ALL_LOCAL += plugins/ctf/common/metadata/lexer.cpp | |
336 | endif # HAVE_FLEX | |
337 | ||
338 | all-local: $(ALL_LOCAL) | |
339 | ||
86ef6105 MJ |
340 | if ENABLE_PYTHON_COMMON_DEPS |
341 | noinst_LTLIBRARIES += py-common/libpy-common.la | |
342 | ||
343 | py_common_libpy_common_la_SOURCES = \ | |
344 | py-common/py-common.c \ | |
345 | py-common/py-common.h | |
346 | ||
347 | py_common_libpy_common_la_CPPFLAGS = \ | |
348 | $(AM_CPPFLAGS) \ | |
349 | $(PYTHON_INCLUDE) | |
350 | ||
351 | endif # ENABLE_PYTHON_COMMON_DEPS | |
352 | ||
6244258c MJ |
353 | if ENABLE_DEBUG_INFO |
354 | noinst_LTLIBRARIES += plugins/lttng-utils/debug-info/libdebug-info.la | |
355 | ||
356 | plugins_lttng_utils_debug_info_libdebug_info_la_SOURCES = \ | |
357 | plugins/lttng-utils/debug-info/bin-info.c \ | |
358 | plugins/lttng-utils/debug-info/bin-info.h \ | |
359 | plugins/lttng-utils/debug-info/crc32.c \ | |
360 | plugins/lttng-utils/debug-info/crc32.h \ | |
361 | plugins/lttng-utils/debug-info/debug-info.c \ | |
362 | plugins/lttng-utils/debug-info/debug-info.h \ | |
363 | plugins/lttng-utils/debug-info/dwarf.c \ | |
364 | plugins/lttng-utils/debug-info/dwarf.h \ | |
365 | plugins/lttng-utils/debug-info/trace-ir-data-copy.c \ | |
366 | plugins/lttng-utils/debug-info/trace-ir-data-copy.h \ | |
367 | plugins/lttng-utils/debug-info/trace-ir-mapping.c \ | |
368 | plugins/lttng-utils/debug-info/trace-ir-mapping.h \ | |
369 | plugins/lttng-utils/debug-info/trace-ir-metadata-copy.c \ | |
370 | plugins/lttng-utils/debug-info/trace-ir-metadata-copy.h \ | |
371 | plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.c \ | |
372 | plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.h \ | |
373 | plugins/lttng-utils/debug-info/utils.c \ | |
374 | plugins/lttng-utils/debug-info/utils.h | |
375 | ||
376 | plugins_lttng_utils_debug_info_libdebug_info_la_LIBADD = \ | |
377 | fd-cache/libfd-cache.la | |
378 | ||
379 | endif # ENABLE_DEBUG_INFO | |
380 | ||
381 | ||
86ef6105 MJ |
382 | # |
383 | # Public libraries | |
384 | # | |
385 | ||
386 | lib_LTLIBRARIES = \ | |
387 | ctf-writer/libbabeltrace2-ctf-writer.la \ | |
388 | lib/libbabeltrace2.la | |
389 | ||
390 | lib_libbabeltrace2_la_SOURCES = \ | |
391 | lib/graph/message/discarded-items.c \ | |
392 | lib/graph/message/discarded-items.h \ | |
393 | lib/graph/message/event.c \ | |
394 | lib/graph/message/event.h \ | |
395 | lib/graph/message-iterator-class.c \ | |
396 | lib/graph/message-iterator-class.h \ | |
86ef6105 MJ |
397 | lib/graph/message/message.c \ |
398 | lib/graph/message/message.h \ | |
399 | lib/graph/message/message-iterator-inactivity.c \ | |
400 | lib/graph/message/message-iterator-inactivity.h \ | |
401 | lib/graph/message/packet.c \ | |
402 | lib/graph/message/packet.h \ | |
403 | lib/graph/message/stream.c \ | |
404 | lib/graph/message/stream.h \ | |
405 | lib/graph/component.c \ | |
406 | lib/graph/component-class.c \ | |
407 | lib/graph/component-class.h \ | |
408 | lib/graph/component-class-sink-simple.c \ | |
409 | lib/graph/component-class-sink-simple.h \ | |
410 | lib/graph/component-descriptor-set.c \ | |
411 | lib/graph/component-descriptor-set.h \ | |
412 | lib/graph/component-filter.c \ | |
413 | lib/graph/component-filter.h \ | |
414 | lib/graph/component.h \ | |
415 | lib/graph/component-sink.c \ | |
416 | lib/graph/component-sink.h \ | |
417 | lib/graph/component-source.c \ | |
418 | lib/graph/component-source.h \ | |
419 | lib/graph/connection.c \ | |
420 | lib/graph/connection.h \ | |
421 | lib/graph/graph.c \ | |
422 | lib/graph/graph.h \ | |
423 | lib/graph/interrupter.c \ | |
424 | lib/graph/interrupter.h \ | |
425 | lib/graph/iterator.c \ | |
5155b005 | 426 | lib/graph/iterator.h \ |
86ef6105 MJ |
427 | lib/graph/mip.c \ |
428 | lib/graph/port.c \ | |
429 | lib/graph/port.h \ | |
430 | lib/graph/query-executor.c \ | |
431 | lib/graph/query-executor.h \ | |
432 | lib/plugin/plugin.c \ | |
433 | lib/plugin/plugin.h \ | |
434 | lib/plugin/plugin-so.c \ | |
435 | lib/plugin/plugin-so.h \ | |
86ef6105 MJ |
436 | lib/trace-ir/attributes.c \ |
437 | lib/trace-ir/attributes.h \ | |
438 | lib/trace-ir/clock-class.c \ | |
439 | lib/trace-ir/clock-class.h \ | |
440 | lib/trace-ir/clock-snapshot.c \ | |
441 | lib/trace-ir/clock-snapshot.h \ | |
442 | lib/trace-ir/event.c \ | |
443 | lib/trace-ir/event-class.c \ | |
444 | lib/trace-ir/event-class.h \ | |
445 | lib/trace-ir/event.h \ | |
446 | lib/trace-ir/field.c \ | |
447 | lib/trace-ir/field-class.c \ | |
448 | lib/trace-ir/field-class.h \ | |
449 | lib/trace-ir/field.h \ | |
450 | lib/trace-ir/field-path.c \ | |
451 | lib/trace-ir/field-path.h \ | |
452 | lib/trace-ir/field-wrapper.c \ | |
453 | lib/trace-ir/field-wrapper.h \ | |
454 | lib/trace-ir/packet.c \ | |
455 | lib/trace-ir/packet.h \ | |
456 | lib/trace-ir/resolve-field-path.c \ | |
457 | lib/trace-ir/resolve-field-path.h \ | |
458 | lib/trace-ir/stream.c \ | |
459 | lib/trace-ir/stream-class.c \ | |
460 | lib/trace-ir/stream-class.h \ | |
461 | lib/trace-ir/stream.h \ | |
462 | lib/trace-ir/trace.c \ | |
463 | lib/trace-ir/trace-class.c \ | |
464 | lib/trace-ir/trace-class.h \ | |
465 | lib/trace-ir/trace.h \ | |
466 | lib/trace-ir/utils.c \ | |
467 | lib/trace-ir/utils.h \ | |
468 | lib/assert-cond-base.h \ | |
469 | lib/assert-cond.h \ | |
470 | lib/assert-cond.c \ | |
471 | lib/babeltrace2.c \ | |
472 | lib/current-thread.c \ | |
473 | lib/error.c \ | |
474 | lib/error.h \ | |
475 | lib/func-status.h \ | |
476 | lib/integer-range-set.c \ | |
477 | lib/integer-range-set.h \ | |
478 | lib/lib-logging.c \ | |
479 | lib/logging.c \ | |
480 | lib/logging.h \ | |
481 | lib/object-pool.c \ | |
482 | lib/object-pool.h \ | |
483 | lib/object.h \ | |
484 | lib/property.h \ | |
485 | lib/util.c \ | |
486 | lib/value.c \ | |
487 | lib/value.h | |
488 | ||
489 | lib_libbabeltrace2_la_LDFLAGS = \ | |
490 | $(AM_LDFLAGS) \ | |
491 | $(LT_NO_UNDEFINED) \ | |
492 | -version-info $(BABELTRACE_LIBRARY_VERSION) | |
493 | ||
494 | lib_libbabeltrace2_la_CPPFLAGS = \ | |
495 | $(AM_CPPFLAGS) \ | |
496 | '-DBABELTRACE_PLUGIN_PROVIDERS_DIR="$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"' | |
497 | ||
498 | lib_libbabeltrace2_la_LIBADD = \ | |
499 | logging/liblogging.la \ | |
ed615696 | 500 | common/libcommon.la \ |
78d07b86 SM |
501 | compat/libcompat.la \ |
502 | clock-correlation-validator/libclock-correlation-validator.la | |
503 | ||
504 | nodist_EXTRA_lib_libbabeltrace2_la_SOURCES = dummy.cpp | |
86ef6105 MJ |
505 | |
506 | ctf_writer_libbabeltrace2_ctf_writer_la_SOURCES = \ | |
507 | ctf-writer/assert-pre.h \ | |
508 | ctf-writer/attributes.c \ | |
509 | ctf-writer/attributes.h \ | |
510 | ctf-writer/clock.c \ | |
511 | ctf-writer/clock-class.c \ | |
512 | ctf-writer/clock-class.h \ | |
513 | ctf-writer/clock.h \ | |
514 | ctf-writer/event.c \ | |
515 | ctf-writer/event-class.c \ | |
516 | ctf-writer/event-class.h \ | |
517 | ctf-writer/event.h \ | |
518 | ctf-writer/field-path.c \ | |
519 | ctf-writer/field-path.h \ | |
520 | ctf-writer/fields.c \ | |
521 | ctf-writer/fields.h \ | |
522 | ctf-writer/field-types.c \ | |
523 | ctf-writer/field-types.h \ | |
524 | ctf-writer/field-wrapper.c \ | |
525 | ctf-writer/field-wrapper.h \ | |
526 | ctf-writer/functor.c \ | |
527 | ctf-writer/functor.h \ | |
528 | ctf-writer/logging.c \ | |
529 | ctf-writer/logging.h \ | |
530 | ctf-writer/object.c \ | |
531 | ctf-writer/object.h \ | |
532 | ctf-writer/object-pool.c \ | |
533 | ctf-writer/object-pool.h \ | |
534 | ctf-writer/resolve.c \ | |
535 | ctf-writer/resolve.h \ | |
536 | ctf-writer/stream.c \ | |
537 | ctf-writer/stream-class.c \ | |
538 | ctf-writer/stream-class.h \ | |
539 | ctf-writer/stream.h \ | |
540 | ctf-writer/trace.c \ | |
541 | ctf-writer/trace.h \ | |
542 | ctf-writer/utils.c \ | |
543 | ctf-writer/utils.h \ | |
544 | ctf-writer/validation.c \ | |
545 | ctf-writer/validation.h \ | |
546 | ctf-writer/values.c \ | |
547 | ctf-writer/values.h \ | |
548 | ctf-writer/visitor.c \ | |
549 | ctf-writer/visitor.h \ | |
550 | ctf-writer/writer.c \ | |
551 | ctf-writer/writer.h | |
552 | ||
553 | ctf_writer_libbabeltrace2_ctf_writer_la_LDFLAGS = \ | |
554 | $(AM_LDFLAGS) \ | |
555 | $(LT_NO_UNDEFINED) \ | |
556 | -version-info $(BABELTRACE_LIBRARY_VERSION) | |
557 | ||
558 | ctf_writer_libbabeltrace2_ctf_writer_la_LIBADD = \ | |
559 | logging/liblogging.la \ | |
ed615696 | 560 | common/libcommon.la \ |
86ef6105 MJ |
561 | ctfser/libctfser.la \ |
562 | compat/libcompat.la | |
563 | ||
578e048b | 564 | pkgconfigdir = $(libdir)/pkgconfig |
86ef6105 MJ |
565 | pkgconfig_DATA = \ |
566 | babeltrace2-ctf-writer.pc \ | |
567 | babeltrace2.pc | |
568 | ||
569 | # | |
570 | # Python plugin provider | |
571 | # | |
572 | ||
573 | if ENABLE_PYTHON_PLUGINS | |
574 | pluginproviderdir = "$(BABELTRACE_PLUGIN_PROVIDERS_DIR)" | |
575 | pluginprovider_LTLIBRARIES = python-plugin-provider/babeltrace2-python-plugin-provider.la | |
576 | ||
577 | python_plugin_provider_babeltrace2_python_plugin_provider_la_SOURCES = \ | |
578 | python-plugin-provider/python-plugin-provider.c \ | |
579 | python-plugin-provider/python-plugin-provider.h | |
580 | ||
581 | python_plugin_provider_babeltrace2_python_plugin_provider_la_LDFLAGS = \ | |
582 | $(AM_LDFLAGS) \ | |
583 | $(LT_NO_UNDEFINED) \ | |
584 | -avoid-version -module \ | |
585 | $(PYTHON_LDFLAGS) | |
586 | ||
587 | python_plugin_provider_babeltrace2_python_plugin_provider_la_CPPFLAGS = \ | |
588 | $(AM_CPPFLAGS) \ | |
589 | $(PYTHON_INCLUDE) | |
590 | ||
591 | python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD = | |
592 | ||
593 | # Link the Python plugin provider library with libbabeltrace2 | |
594 | # when it's not built-in the babeltrace2 executable. | |
595 | if !ENABLE_BUILT_IN_PLUGINS | |
596 | python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD += \ | |
597 | logging/liblogging.la \ | |
ed615696 | 598 | common/libcommon.la \ |
86ef6105 MJ |
599 | py-common/libpy-common.la \ |
600 | lib/libbabeltrace2.la | |
601 | endif | |
602 | endif # ENABLE_PYTHON_PLUGINS | |
6244258c MJ |
603 | |
604 | # | |
605 | # Plugins | |
606 | # | |
607 | ||
608 | plugindir = "$(BABELTRACE_PLUGINS_DIR)" | |
609 | plugin_LTLIBRARIES = \ | |
610 | plugins/ctf/babeltrace-plugin-ctf.la \ | |
611 | plugins/text/babeltrace-plugin-text.la \ | |
612 | plugins/utils/babeltrace-plugin-utils.la | |
613 | ||
614 | ||
615 | # utils plugin | |
616 | plugins_utils_babeltrace_plugin_utils_la_SOURCES = \ | |
617 | plugins/utils/counter/counter.c \ | |
618 | plugins/utils/counter/counter.h \ | |
619 | plugins/utils/dummy/dummy.c \ | |
620 | plugins/utils/dummy/dummy.h \ | |
fca1d0f5 PP |
621 | plugins/utils/muxer/comp.cpp \ |
622 | plugins/utils/muxer/comp.hpp \ | |
623 | plugins/utils/muxer/msg-iter.cpp \ | |
624 | plugins/utils/muxer/msg-iter.hpp \ | |
625 | plugins/utils/muxer/upstream-msg-iter.cpp \ | |
626 | plugins/utils/muxer/upstream-msg-iter.hpp \ | |
6244258c MJ |
627 | plugins/utils/trimmer/trimmer.c \ |
628 | plugins/utils/trimmer/trimmer.h \ | |
fca1d0f5 | 629 | plugins/utils/plugin.cpp |
6244258c MJ |
630 | |
631 | plugins_utils_babeltrace_plugin_utils_la_LDFLAGS = \ | |
632 | $(AM_LDFLAGS) \ | |
633 | $(LT_NO_UNDEFINED) \ | |
634 | -avoid-version -module $(LD_NOTEXT) | |
635 | ||
636 | plugins_utils_babeltrace_plugin_utils_la_LIBADD = \ | |
637 | plugins/common/muxing/libmuxing.la | |
638 | ||
639 | if !ENABLE_BUILT_IN_PLUGINS | |
640 | plugins_utils_babeltrace_plugin_utils_la_LIBADD += \ | |
641 | lib/libbabeltrace2.la \ | |
ed615696 | 642 | common/libcommon.la \ |
fca1d0f5 | 643 | cpp-common/vendor/fmt/libfmt.la \ |
6244258c | 644 | logging/liblogging.la \ |
df8863ad SM |
645 | plugins/common/param-validation/libparam-validation.la \ |
646 | clock-correlation-validator/libclock-correlation-validator.la | |
6244258c MJ |
647 | endif |
648 | ||
649 | # ctf plugin | |
650 | plugins_ctf_babeltrace_plugin_ctf_la_SOURCES = \ | |
5656cea5 PP |
651 | plugins/ctf/common/src/bfcr/bfcr.cpp \ |
652 | plugins/ctf/common/src/bfcr/bfcr.hpp \ | |
653 | plugins/ctf/common/src/msg-iter/msg-iter.cpp \ | |
654 | plugins/ctf/common/src/msg-iter/msg-iter.hpp \ | |
6244258c MJ |
655 | plugins/ctf/fs-sink/fs-sink.cpp \ |
656 | plugins/ctf/fs-sink/fs-sink-ctf-meta.hpp \ | |
657 | plugins/ctf/fs-sink/fs-sink.hpp \ | |
658 | plugins/ctf/fs-sink/fs-sink-stream.cpp \ | |
659 | plugins/ctf/fs-sink/fs-sink-stream.hpp \ | |
660 | plugins/ctf/fs-sink/fs-sink-trace.cpp \ | |
661 | plugins/ctf/fs-sink/fs-sink-trace.hpp \ | |
662 | plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.cpp \ | |
663 | plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.hpp \ | |
664 | plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.cpp \ | |
665 | plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.hpp \ | |
666 | plugins/ctf/fs-src/data-stream-file.cpp \ | |
667 | plugins/ctf/fs-src/data-stream-file.hpp \ | |
668 | plugins/ctf/fs-src/file.cpp \ | |
669 | plugins/ctf/fs-src/file.hpp \ | |
670 | plugins/ctf/fs-src/fs.cpp \ | |
671 | plugins/ctf/fs-src/fs.hpp \ | |
672 | plugins/ctf/fs-src/lttng-index.hpp \ | |
673 | plugins/ctf/fs-src/metadata.cpp \ | |
674 | plugins/ctf/fs-src/metadata.hpp \ | |
675 | plugins/ctf/fs-src/query.cpp \ | |
676 | plugins/ctf/fs-src/query.hpp \ | |
677 | plugins/ctf/lttng-live/data-stream.cpp \ | |
678 | plugins/ctf/lttng-live/data-stream.hpp \ | |
679 | plugins/ctf/lttng-live/lttng-live.cpp \ | |
680 | plugins/ctf/lttng-live/lttng-live.hpp \ | |
681 | plugins/ctf/lttng-live/lttng-viewer-abi.hpp \ | |
682 | plugins/ctf/lttng-live/metadata.cpp \ | |
683 | plugins/ctf/lttng-live/metadata.hpp \ | |
684 | plugins/ctf/lttng-live/viewer-connection.cpp \ | |
685 | plugins/ctf/lttng-live/viewer-connection.hpp \ | |
686 | plugins/ctf/plugin.cpp | |
687 | ||
688 | plugins_ctf_babeltrace_plugin_ctf_la_LDFLAGS = \ | |
689 | $(AM_LDFLAGS) \ | |
690 | $(LT_NO_UNDEFINED) \ | |
691 | -avoid-version -module $(LD_NOTEXT) | |
692 | ||
693 | plugins_ctf_babeltrace_plugin_ctf_la_LIBADD = \ | |
694 | plugins/ctf/common/metadata/libctf-parser.la \ | |
695 | plugins/ctf/common/metadata/libctf-ast.la \ | |
696 | plugins/common/param-validation/libparam-validation.la | |
697 | ||
698 | if BABELTRACE_BUILD_WITH_MINGW | |
699 | plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += -lws2_32 | |
700 | endif | |
701 | ||
702 | if !ENABLE_BUILT_IN_PLUGINS | |
703 | plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += \ | |
704 | lib/libbabeltrace2.la \ | |
705 | logging/liblogging.la \ | |
706 | plugins/common/muxing/libmuxing.la \ | |
ed615696 | 707 | common/libcommon.la \ |
6244258c MJ |
708 | ctfser/libctfser.la |
709 | endif | |
710 | ||
711 | # text plugin | |
712 | plugins_text_babeltrace_plugin_text_la_SOURCES = \ | |
713 | plugins/text/details/colors.h \ | |
714 | plugins/text/details/details.c \ | |
715 | plugins/text/details/details.h \ | |
716 | plugins/text/details/obj-lifetime-mgmt.c \ | |
717 | plugins/text/details/obj-lifetime-mgmt.h \ | |
718 | plugins/text/details/write.c \ | |
719 | plugins/text/details/write.h \ | |
720 | plugins/text/dmesg/dmesg.c \ | |
721 | plugins/text/dmesg/dmesg.h \ | |
722 | plugins/text/pretty/pretty.c \ | |
723 | plugins/text/pretty/pretty.h \ | |
724 | plugins/text/pretty/print.c \ | |
725 | plugins/text/plugin.c | |
726 | ||
727 | plugins_text_babeltrace_plugin_text_la_LDFLAGS = \ | |
728 | $(AM_LDFLAGS) \ | |
729 | $(LT_NO_UNDEFINED) \ | |
730 | -avoid-version -module $(LD_NOTEXT) | |
731 | ||
732 | plugins_text_babeltrace_plugin_text_la_LIBADD = | |
733 | ||
734 | if !ENABLE_BUILT_IN_PLUGINS | |
735 | plugins_text_babeltrace_plugin_text_la_LIBADD += \ | |
736 | lib/libbabeltrace2.la \ | |
ed615696 | 737 | common/libcommon.la \ |
6244258c MJ |
738 | logging/liblogging.la \ |
739 | compat/libcompat.la \ | |
740 | plugins/common/param-validation/libparam-validation.la | |
741 | endif | |
742 | ||
743 | # lttng-utils plugin | |
744 | if ENABLE_DEBUG_INFO | |
745 | plugin_LTLIBRARIES += \ | |
746 | plugins/lttng-utils/babeltrace-plugin-lttng-utils.la | |
747 | ||
748 | plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_SOURCES = \ | |
749 | plugins/lttng-utils/plugin.c | |
750 | ||
751 | plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LDFLAGS = \ | |
752 | $(AM_LDFLAGS) \ | |
753 | $(LT_NO_UNDEFINED) \ | |
754 | -avoid-version -module $(LD_NOTEXT) \ | |
755 | $(ELFUTILS_LIBS) | |
756 | ||
757 | plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD = \ | |
758 | plugins/lttng-utils/debug-info/libdebug-info.la | |
759 | ||
760 | if !ENABLE_BUILT_IN_PLUGINS | |
761 | plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD += \ | |
762 | lib/libbabeltrace2.la \ | |
ed615696 | 763 | common/libcommon.la \ |
6244258c MJ |
764 | logging/liblogging.la \ |
765 | plugins/common/param-validation/libparam-validation.la | |
766 | endif # !ENABLE_BUILT_IN_PLUGINS | |
767 | endif # ENABLE_DEBUG_INFO | |
53118ba6 | 768 | |
30586bf0 PP |
769 | EXTRA_DIST = \ |
770 | cpp-common/vendor/optional-lite/optional.hpp.license \ | |
a19a1879 MJ |
771 | cpp-common/vendor/span-lite/span.hpp.license \ |
772 | cpp-common/vendor/string-view-lite/string_view.hpp.license |