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