1 # SPDX-FileCopyrightText: 2019-2023 EfficiOS, Inc.
2 # SPDX-License-Identifier: MIT
4 # Build the current dir containing the library and plugins before the cli and
10 if ENABLE_PYTHON_BINDINGS
11 SUBDIRS += bindings/python/bt2
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.
21 version_verbose = $(version_verbose_@AM_V@)
22 version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
23 version_verbose_0 = @echo " GEN " $@;
26 $(version_verbose)GREP=$(GREP) SED=$(SED) TOP_SRCDIR="$(top_srcdir)" $(SHELL) $(srcdir)/gen-version-i.sh
28 dist_noinst_SCRIPTS = gen-version-i.sh
30 # Ensure version.i is generated before any code is built.
31 BUILT_SOURCES = common/version.i
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.
37 .PHONY: common/version.i
39 CLEANFILES = common/version.i.tmp
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.
45 DISTCLEANFILES = common/version.i
48 # Convenience libraries
51 noinst_LTLIBRARIES = \
53 autodisc/libautodisc.la \
56 cpp-common/libcpp-common.la \
57 cpp-common/vendor/fmt/libfmt.la \
59 fd-cache/libfd-cache.la \
60 logging/liblogging.la \
61 param-parse/libparam-parse.la \
62 plugins/common/muxing/libmuxing.la \
63 plugins/common/param-validation/libparam-validation.la \
64 plugins/ctf/common/metadata/libctf-ast.la \
65 plugins/ctf/common/metadata/libctf-parser.la \
66 string-format/libstring-format.la
69 argpar_libargpar_la_SOURCES = \
73 autodisc_libautodisc_la_SOURCES = \
77 common_libcommon_la_SOURCES = \
92 common_libcommon_la_CPPFLAGS = \
94 -DBABELTRACE_PLUGINS_DIR=\"$(BABELTRACE_PLUGINS_DIR)\"
96 compat_libcompat_la_SOURCES = \
114 cpp_common_libcpp_common_la_SOURCES = \
115 cpp-common/bt2/borrowed-object-iterator.hpp \
116 cpp-common/bt2/borrowed-object-proxy.hpp \
117 cpp-common/bt2/borrowed-object.hpp \
118 cpp-common/bt2/clock-class.hpp \
119 cpp-common/bt2/clock-snapshot.hpp \
120 cpp-common/bt2/component-class-dev.hpp \
121 cpp-common/bt2/component-class.hpp \
122 cpp-common/bt2/component-port.hpp \
123 cpp-common/bt2/graph.hpp \
124 cpp-common/bt2/exc.hpp \
125 cpp-common/bt2/field-class.hpp \
126 cpp-common/bt2/field-path.hpp \
127 cpp-common/bt2/field.hpp \
128 cpp-common/bt2/integer-range-set.hpp \
129 cpp-common/bt2/integer-range.hpp \
130 cpp-common/bt2/internal/comp-cls-bridge.hpp \
131 cpp-common/bt2/internal/utils.hpp \
132 cpp-common/bt2/logging.hpp \
133 cpp-common/bt2/message-array.hpp \
134 cpp-common/bt2/message-iterator.hpp \
135 cpp-common/bt2/message.hpp \
136 cpp-common/bt2/optional-borrowed-object.hpp \
137 cpp-common/bt2/plugin-dev.hpp \
138 cpp-common/bt2/plugin-set.hpp \
139 cpp-common/bt2/plugin.hpp \
140 cpp-common/bt2/private-query-executor.hpp \
141 cpp-common/bt2/query-executor.hpp \
142 cpp-common/bt2/raw-value-proxy.hpp \
143 cpp-common/bt2/self-component-class.hpp \
144 cpp-common/bt2/self-component-port.hpp \
145 cpp-common/bt2/self-message-iterator-configuration.hpp \
146 cpp-common/bt2/self-message-iterator.hpp \
147 cpp-common/bt2/shared-object.hpp \
148 cpp-common/bt2/trace-ir.hpp \
149 cpp-common/bt2/type-traits.hpp \
150 cpp-common/bt2/value.hpp \
151 cpp-common/bt2/wrap.hpp \
152 cpp-common/bt2c/align.hpp \
153 cpp-common/bt2c/c-string-view.hpp \
154 cpp-common/bt2c/call.hpp \
155 cpp-common/bt2c/dummy.cpp \
156 cpp-common/bt2c/endian.hpp \
157 cpp-common/bt2c/exc.hpp \
158 cpp-common/bt2c/fmt.hpp \
159 cpp-common/bt2c/glib-up.hpp \
160 cpp-common/bt2c/libc-up.hpp \
161 cpp-common/bt2c/logging.hpp \
162 cpp-common/bt2c/prio-heap.hpp \
163 cpp-common/bt2c/read-fixed-len-int.hpp \
164 cpp-common/bt2c/safe-ops.hpp \
165 cpp-common/bt2c/std-int.hpp \
166 cpp-common/bt2c/type-traits.hpp \
167 cpp-common/bt2c/uuid.hpp \
168 cpp-common/bt2c/vector.hpp \
169 cpp-common/bt2s/make-unique.hpp \
170 cpp-common/bt2s/optional.hpp \
171 cpp-common/bt2s/span.hpp \
172 cpp-common/bt2s/string-view.hpp \
173 cpp-common/vendor/nlohmann/json.hpp \
174 cpp-common/vendor/optional-lite/optional.hpp \
175 cpp-common/vendor/span-lite/span.hpp \
176 cpp-common/vendor/string_view-standalone/string_view.hpp
178 cpp_common_vendor_fmt_libfmt_la_SOURCES = \
179 cpp-common/vendor/fmt/args.h \
180 cpp-common/vendor/fmt/chrono.h \
181 cpp-common/vendor/fmt/color.h \
182 cpp-common/vendor/fmt/compile.h \
183 cpp-common/vendor/fmt/core.h \
184 cpp-common/vendor/fmt/format-inl.h \
185 cpp-common/vendor/fmt/format.cc \
186 cpp-common/vendor/fmt/format.h \
187 cpp-common/vendor/fmt/os.cc \
188 cpp-common/vendor/fmt/os.h \
189 cpp-common/vendor/fmt/ostream.h \
190 cpp-common/vendor/fmt/printf.h \
191 cpp-common/vendor/fmt/ranges.h \
192 cpp-common/vendor/fmt/std.h \
193 cpp-common/vendor/fmt/xchar.h
195 ctfser_libctfser_la_SOURCES = \
199 fd_cache_libfd_cache_la_SOURCES = \
200 fd-cache/fd-cache.c \
203 logging_liblogging_la_SOURCES = \
204 logging/comp-logging.h \
209 param_parse_libparam_parse_la_SOURCES = \
210 param-parse/param-parse.c \
211 param-parse/param-parse.h
213 string_format_libstring_format_la_SOURCES = \
214 string-format/format-plugin-comp-cls-name.c \
215 string-format/format-plugin-comp-cls-name.h \
216 string-format/format-error.c \
217 string-format/format-error.h
219 plugins_common_muxing_libmuxing_la_SOURCES = \
220 plugins/common/muxing/muxing.c \
221 plugins/common/muxing/muxing.h
223 plugins_common_param_validation_libparam_validation_la_SOURCES = \
224 plugins/common/param-validation/param-validation.c \
225 plugins/common/param-validation/param-validation.h
227 # Set flags for the Bison based metadata parser
228 # -t : instrument the parser
229 # -d : produce a header
231 # -Wno-yacc : disable POSIX Yacc incompatibilities warnings
235 plugins_ctf_common_metadata_libctf_parser_la_SOURCES = \
236 plugins/ctf/common/metadata/lexer.lpp \
237 plugins/ctf/common/metadata/parser.ypp \
238 plugins/ctf/common/metadata/objstack.cpp
240 # scanner-symbols.h is included to prefix generated yy_* symbols with bt_.
241 plugins_ctf_common_metadata_libctf_parser_la_CPPFLAGS = \
243 -include $(srcdir)/plugins/ctf/common/metadata/scanner-symbols.hpp
245 # This library contains (mostly) generated code, silence some warnings that it
247 plugins_ctf_common_metadata_libctf_parser_la_CXXFLAGS = \
249 -Wno-unused-function \
250 -Wno-null-dereference \
251 -Wno-missing-field-initializers \
252 -Wno-unused-parameter
254 plugins_ctf_common_metadata_libctf_ast_la_SOURCES = \
255 plugins/ctf/common/metadata/visitor-generate-ir.cpp \
256 plugins/ctf/common/metadata/visitor-semantic-validator.cpp \
257 plugins/ctf/common/metadata/visitor-parent-links.cpp \
258 plugins/ctf/common/metadata/ast.hpp \
259 plugins/ctf/common/metadata/objstack.hpp \
260 plugins/ctf/common/metadata/parser.hpp \
261 plugins/ctf/common/metadata/parser-wrap.hpp \
262 plugins/ctf/common/metadata/scanner.hpp \
263 plugins/ctf/common/metadata/scanner-symbols.hpp \
264 plugins/ctf/common/metadata/decoder.cpp \
265 plugins/ctf/common/metadata/decoder.hpp \
266 plugins/ctf/common/metadata/decoder-packetized-file-stream-to-buf.cpp \
267 plugins/ctf/common/metadata/decoder-packetized-file-stream-to-buf.hpp \
268 plugins/ctf/common/metadata/logging.cpp \
269 plugins/ctf/common/metadata/logging.hpp \
270 plugins/ctf/common/metadata/ctf-meta.hpp \
271 plugins/ctf/common/metadata/ctf-meta-visitors.hpp \
272 plugins/ctf/common/metadata/ctf-meta-validate.cpp \
273 plugins/ctf/common/metadata/ctf-meta-update-meanings.cpp \
274 plugins/ctf/common/metadata/ctf-meta-update-in-ir.cpp \
275 plugins/ctf/common/metadata/ctf-meta-update-default-clock-classes.cpp \
276 plugins/ctf/common/metadata/ctf-meta-update-text-array-sequence.cpp \
277 plugins/ctf/common/metadata/ctf-meta-update-alignments.cpp \
278 plugins/ctf/common/metadata/ctf-meta-update-value-storing-indexes.cpp \
279 plugins/ctf/common/metadata/ctf-meta-update-stream-class-config.cpp \
280 plugins/ctf/common/metadata/ctf-meta-warn-meaningless-header-fields.cpp \
281 plugins/ctf/common/metadata/ctf-meta-translate.cpp \
282 plugins/ctf/common/metadata/ctf-meta-resolve.cpp \
283 plugins/ctf/common/metadata/ctf-meta-configure-ir-trace.cpp \
284 plugins/ctf/common/metadata/ctf-meta-configure-ir-trace.hpp
286 if BABELTRACE_BUILD_WITH_MINGW
287 plugins_ctf_common_metadata_libctf_ast_la_LIBADD = -lintl -liconv -lole32
291 plugins/ctf/common/metadata/parser.hpp
296 # We have bison: we can clean the generated parser files
298 plugins/ctf/common/metadata/parser.cpp \
299 plugins/ctf/common/metadata/parser.hpp \
300 plugins/ctf/common/metadata/parser.output
302 # Create target used to stop the build if we want to build the parser,
303 # but we don't have the necessary tool to do so
304 plugins/ctf/common/metadata/parser.cpp plugins/ctf/common/metadata/parser.hpp: plugins/ctf/common/metadata/parser.ypp
305 @echo "Error: Cannot build target because bison is missing."
306 @echo "Make sure bison is installed and run the configure script again."
310 plugins/ctf/common/metadata/parser.cpp \
311 plugins/ctf/common/metadata/parser.hpp
315 # We have flex: we can clean the generated lexer files
316 CLEANFILES += plugins/ctf/common/metadata/lexer.cpp
318 # Create target used to stop the build if we want to build the lexer,
319 # but we don't have the necessary tool to do so
320 plugins/ctf/common/metadata/lexer.cpp: plugins/ctf/common/metadata/lexer.lpp
321 @echo "Error: Cannot build target because flex is missing."
322 @echo "Make sure flex is installed and run the configure script again."
325 ALL_LOCAL += plugins/ctf/common/metadata/lexer.cpp
328 all-local: $(ALL_LOCAL)
330 if ENABLE_PYTHON_COMMON_DEPS
331 noinst_LTLIBRARIES += py-common/libpy-common.la
333 py_common_libpy_common_la_SOURCES = \
334 py-common/py-common.c \
335 py-common/py-common.h
337 py_common_libpy_common_la_CPPFLAGS = \
341 endif # ENABLE_PYTHON_COMMON_DEPS
344 noinst_LTLIBRARIES += plugins/lttng-utils/debug-info/libdebug-info.la
346 plugins_lttng_utils_debug_info_libdebug_info_la_SOURCES = \
347 plugins/lttng-utils/debug-info/bin-info.c \
348 plugins/lttng-utils/debug-info/bin-info.h \
349 plugins/lttng-utils/debug-info/crc32.c \
350 plugins/lttng-utils/debug-info/crc32.h \
351 plugins/lttng-utils/debug-info/debug-info.c \
352 plugins/lttng-utils/debug-info/debug-info.h \
353 plugins/lttng-utils/debug-info/dwarf.c \
354 plugins/lttng-utils/debug-info/dwarf.h \
355 plugins/lttng-utils/debug-info/trace-ir-data-copy.c \
356 plugins/lttng-utils/debug-info/trace-ir-data-copy.h \
357 plugins/lttng-utils/debug-info/trace-ir-mapping.c \
358 plugins/lttng-utils/debug-info/trace-ir-mapping.h \
359 plugins/lttng-utils/debug-info/trace-ir-metadata-copy.c \
360 plugins/lttng-utils/debug-info/trace-ir-metadata-copy.h \
361 plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.c \
362 plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.h \
363 plugins/lttng-utils/debug-info/utils.c \
364 plugins/lttng-utils/debug-info/utils.h
366 plugins_lttng_utils_debug_info_libdebug_info_la_LIBADD = \
367 fd-cache/libfd-cache.la
369 endif # ENABLE_DEBUG_INFO
377 ctf-writer/libbabeltrace2-ctf-writer.la \
378 lib/libbabeltrace2.la
380 lib_libbabeltrace2_la_SOURCES = \
381 lib/graph/message/discarded-items.c \
382 lib/graph/message/discarded-items.h \
383 lib/graph/message/event.c \
384 lib/graph/message/event.h \
385 lib/graph/message-iterator-class.c \
386 lib/graph/message-iterator-class.h \
387 lib/graph/message/message.c \
388 lib/graph/message/message.h \
389 lib/graph/message/message-iterator-inactivity.c \
390 lib/graph/message/message-iterator-inactivity.h \
391 lib/graph/message/packet.c \
392 lib/graph/message/packet.h \
393 lib/graph/message/stream.c \
394 lib/graph/message/stream.h \
395 lib/graph/component.c \
396 lib/graph/component-class.c \
397 lib/graph/component-class.h \
398 lib/graph/component-class-sink-simple.c \
399 lib/graph/component-class-sink-simple.h \
400 lib/graph/component-descriptor-set.c \
401 lib/graph/component-descriptor-set.h \
402 lib/graph/component-filter.c \
403 lib/graph/component-filter.h \
404 lib/graph/component.h \
405 lib/graph/component-sink.c \
406 lib/graph/component-sink.h \
407 lib/graph/component-source.c \
408 lib/graph/component-source.h \
409 lib/graph/connection.c \
410 lib/graph/connection.h \
413 lib/graph/interrupter.c \
414 lib/graph/interrupter.h \
415 lib/graph/iterator.c \
416 lib/graph/iterator.h \
420 lib/graph/query-executor.c \
421 lib/graph/query-executor.h \
422 lib/plugin/plugin.c \
423 lib/plugin/plugin.h \
424 lib/plugin/plugin-so.c \
425 lib/plugin/plugin-so.h \
426 lib/trace-ir/attributes.c \
427 lib/trace-ir/attributes.h \
428 lib/trace-ir/clock-class.c \
429 lib/trace-ir/clock-class.h \
430 lib/trace-ir/clock-snapshot.c \
431 lib/trace-ir/clock-snapshot.h \
432 lib/trace-ir/event.c \
433 lib/trace-ir/event-class.c \
434 lib/trace-ir/event-class.h \
435 lib/trace-ir/event.h \
436 lib/trace-ir/field.c \
437 lib/trace-ir/field-class.c \
438 lib/trace-ir/field-class.h \
439 lib/trace-ir/field.h \
440 lib/trace-ir/field-path.c \
441 lib/trace-ir/field-path.h \
442 lib/trace-ir/field-wrapper.c \
443 lib/trace-ir/field-wrapper.h \
444 lib/trace-ir/packet.c \
445 lib/trace-ir/packet.h \
446 lib/trace-ir/resolve-field-path.c \
447 lib/trace-ir/resolve-field-path.h \
448 lib/trace-ir/stream.c \
449 lib/trace-ir/stream-class.c \
450 lib/trace-ir/stream-class.h \
451 lib/trace-ir/stream.h \
452 lib/trace-ir/trace.c \
453 lib/trace-ir/trace-class.c \
454 lib/trace-ir/trace-class.h \
455 lib/trace-ir/trace.h \
456 lib/trace-ir/utils.c \
457 lib/trace-ir/utils.h \
458 lib/assert-cond-base.h \
462 lib/current-thread.c \
466 lib/integer-range-set.c \
467 lib/integer-range-set.h \
479 lib_libbabeltrace2_la_LDFLAGS = \
482 -version-info $(BABELTRACE_LIBRARY_VERSION)
484 lib_libbabeltrace2_la_CPPFLAGS = \
486 '-DBABELTRACE_PLUGIN_PROVIDERS_DIR="$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"'
488 lib_libbabeltrace2_la_LIBADD = \
489 logging/liblogging.la \
490 common/libcommon.la \
493 ctf_writer_libbabeltrace2_ctf_writer_la_SOURCES = \
494 ctf-writer/assert-pre.h \
495 ctf-writer/attributes.c \
496 ctf-writer/attributes.h \
498 ctf-writer/clock-class.c \
499 ctf-writer/clock-class.h \
502 ctf-writer/event-class.c \
503 ctf-writer/event-class.h \
505 ctf-writer/field-path.c \
506 ctf-writer/field-path.h \
507 ctf-writer/fields.c \
508 ctf-writer/fields.h \
509 ctf-writer/field-types.c \
510 ctf-writer/field-types.h \
511 ctf-writer/field-wrapper.c \
512 ctf-writer/field-wrapper.h \
513 ctf-writer/functor.c \
514 ctf-writer/functor.h \
515 ctf-writer/logging.c \
516 ctf-writer/logging.h \
517 ctf-writer/object.c \
518 ctf-writer/object.h \
519 ctf-writer/object-pool.c \
520 ctf-writer/object-pool.h \
521 ctf-writer/resolve.c \
522 ctf-writer/resolve.h \
523 ctf-writer/stream.c \
524 ctf-writer/stream-class.c \
525 ctf-writer/stream-class.h \
526 ctf-writer/stream.h \
531 ctf-writer/validation.c \
532 ctf-writer/validation.h \
533 ctf-writer/values.c \
534 ctf-writer/values.h \
535 ctf-writer/visitor.c \
536 ctf-writer/visitor.h \
537 ctf-writer/writer.c \
540 ctf_writer_libbabeltrace2_ctf_writer_la_LDFLAGS = \
543 -version-info $(BABELTRACE_LIBRARY_VERSION)
545 ctf_writer_libbabeltrace2_ctf_writer_la_LIBADD = \
546 logging/liblogging.la \
547 common/libcommon.la \
548 ctfser/libctfser.la \
551 pkgconfigdir = $(libdir)/pkgconfig
553 babeltrace2-ctf-writer.pc \
557 # Python plugin provider
560 if ENABLE_PYTHON_PLUGINS
561 pluginproviderdir = "$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"
562 pluginprovider_LTLIBRARIES = python-plugin-provider/babeltrace2-python-plugin-provider.la
564 python_plugin_provider_babeltrace2_python_plugin_provider_la_SOURCES = \
565 python-plugin-provider/python-plugin-provider.c \
566 python-plugin-provider/python-plugin-provider.h
568 python_plugin_provider_babeltrace2_python_plugin_provider_la_LDFLAGS = \
571 -avoid-version -module \
574 python_plugin_provider_babeltrace2_python_plugin_provider_la_CPPFLAGS = \
578 python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD =
580 # Link the Python plugin provider library with libbabeltrace2
581 # when it's not built-in the babeltrace2 executable.
582 if !ENABLE_BUILT_IN_PLUGINS
583 python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD += \
584 logging/liblogging.la \
585 common/libcommon.la \
586 py-common/libpy-common.la \
587 lib/libbabeltrace2.la
589 endif # ENABLE_PYTHON_PLUGINS
595 plugindir = "$(BABELTRACE_PLUGINS_DIR)"
596 plugin_LTLIBRARIES = \
597 plugins/ctf/babeltrace-plugin-ctf.la \
598 plugins/text/babeltrace-plugin-text.la \
599 plugins/utils/babeltrace-plugin-utils.la
603 plugins_utils_babeltrace_plugin_utils_la_SOURCES = \
604 plugins/utils/counter/counter.c \
605 plugins/utils/counter/counter.h \
606 plugins/utils/dummy/dummy.c \
607 plugins/utils/dummy/dummy.h \
608 plugins/utils/muxer/comp.cpp \
609 plugins/utils/muxer/comp.hpp \
610 plugins/utils/muxer/msg-iter.cpp \
611 plugins/utils/muxer/msg-iter.hpp \
612 plugins/utils/muxer/upstream-msg-iter.cpp \
613 plugins/utils/muxer/upstream-msg-iter.hpp \
614 plugins/utils/trimmer/trimmer.c \
615 plugins/utils/trimmer/trimmer.h \
616 plugins/utils/plugin.cpp
618 plugins_utils_babeltrace_plugin_utils_la_LDFLAGS = \
621 -avoid-version -module $(LD_NOTEXT)
623 plugins_utils_babeltrace_plugin_utils_la_LIBADD = \
624 plugins/common/muxing/libmuxing.la
626 if !ENABLE_BUILT_IN_PLUGINS
627 plugins_utils_babeltrace_plugin_utils_la_LIBADD += \
628 lib/libbabeltrace2.la \
629 common/libcommon.la \
630 cpp-common/vendor/fmt/libfmt.la \
631 logging/liblogging.la \
632 plugins/common/param-validation/libparam-validation.la
636 plugins_ctf_babeltrace_plugin_ctf_la_SOURCES = \
637 plugins/ctf/common/bfcr/bfcr.cpp \
638 plugins/ctf/common/bfcr/bfcr.hpp \
639 plugins/ctf/common/msg-iter/msg-iter.cpp \
640 plugins/ctf/common/msg-iter/msg-iter.hpp \
641 plugins/ctf/common/print.hpp \
642 plugins/ctf/fs-sink/fs-sink.cpp \
643 plugins/ctf/fs-sink/fs-sink-ctf-meta.hpp \
644 plugins/ctf/fs-sink/fs-sink.hpp \
645 plugins/ctf/fs-sink/fs-sink-stream.cpp \
646 plugins/ctf/fs-sink/fs-sink-stream.hpp \
647 plugins/ctf/fs-sink/fs-sink-trace.cpp \
648 plugins/ctf/fs-sink/fs-sink-trace.hpp \
649 plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.cpp \
650 plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.hpp \
651 plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.cpp \
652 plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.hpp \
653 plugins/ctf/fs-src/data-stream-file.cpp \
654 plugins/ctf/fs-src/data-stream-file.hpp \
655 plugins/ctf/fs-src/file.cpp \
656 plugins/ctf/fs-src/file.hpp \
657 plugins/ctf/fs-src/fs.cpp \
658 plugins/ctf/fs-src/fs.hpp \
659 plugins/ctf/fs-src/lttng-index.hpp \
660 plugins/ctf/fs-src/metadata.cpp \
661 plugins/ctf/fs-src/metadata.hpp \
662 plugins/ctf/fs-src/query.cpp \
663 plugins/ctf/fs-src/query.hpp \
664 plugins/ctf/lttng-live/data-stream.cpp \
665 plugins/ctf/lttng-live/data-stream.hpp \
666 plugins/ctf/lttng-live/lttng-live.cpp \
667 plugins/ctf/lttng-live/lttng-live.hpp \
668 plugins/ctf/lttng-live/lttng-viewer-abi.hpp \
669 plugins/ctf/lttng-live/metadata.cpp \
670 plugins/ctf/lttng-live/metadata.hpp \
671 plugins/ctf/lttng-live/viewer-connection.cpp \
672 plugins/ctf/lttng-live/viewer-connection.hpp \
673 plugins/ctf/plugin.cpp
675 plugins_ctf_babeltrace_plugin_ctf_la_LDFLAGS = \
678 -avoid-version -module $(LD_NOTEXT)
680 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD = \
681 plugins/ctf/common/metadata/libctf-parser.la \
682 plugins/ctf/common/metadata/libctf-ast.la \
683 plugins/common/param-validation/libparam-validation.la
685 if BABELTRACE_BUILD_WITH_MINGW
686 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += -lws2_32
689 if !ENABLE_BUILT_IN_PLUGINS
690 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += \
691 lib/libbabeltrace2.la \
692 logging/liblogging.la \
693 plugins/common/muxing/libmuxing.la \
694 common/libcommon.la \
699 plugins_text_babeltrace_plugin_text_la_SOURCES = \
700 plugins/text/details/colors.h \
701 plugins/text/details/details.c \
702 plugins/text/details/details.h \
703 plugins/text/details/obj-lifetime-mgmt.c \
704 plugins/text/details/obj-lifetime-mgmt.h \
705 plugins/text/details/write.c \
706 plugins/text/details/write.h \
707 plugins/text/dmesg/dmesg.c \
708 plugins/text/dmesg/dmesg.h \
709 plugins/text/pretty/pretty.c \
710 plugins/text/pretty/pretty.h \
711 plugins/text/pretty/print.c \
712 plugins/text/plugin.c
714 plugins_text_babeltrace_plugin_text_la_LDFLAGS = \
717 -avoid-version -module $(LD_NOTEXT)
719 plugins_text_babeltrace_plugin_text_la_LIBADD =
721 if !ENABLE_BUILT_IN_PLUGINS
722 plugins_text_babeltrace_plugin_text_la_LIBADD += \
723 lib/libbabeltrace2.la \
724 common/libcommon.la \
725 logging/liblogging.la \
726 compat/libcompat.la \
727 plugins/common/param-validation/libparam-validation.la
732 plugin_LTLIBRARIES += \
733 plugins/lttng-utils/babeltrace-plugin-lttng-utils.la
735 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_SOURCES = \
736 plugins/lttng-utils/plugin.c
738 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LDFLAGS = \
741 -avoid-version -module $(LD_NOTEXT) \
744 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD = \
745 plugins/lttng-utils/debug-info/libdebug-info.la
747 if !ENABLE_BUILT_IN_PLUGINS
748 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD += \
749 lib/libbabeltrace2.la \
750 common/libcommon.la \
751 logging/liblogging.la \
752 plugins/common/param-validation/libparam-validation.la
753 endif # !ENABLE_BUILT_IN_PLUGINS
754 endif # ENABLE_DEBUG_INFO
757 cpp-common/vendor/optional-lite/optional.hpp.license \
758 cpp-common/vendor/span-lite/span.hpp.license