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