Commit | Line | Data |
---|---|---|
0235b0db MJ |
1 | # SPDX-License-Identifier: MIT |
2 | ||
056632bf | 3 | plugindir = "$(BABELTRACE_PLUGINS_DIR)" |
22e7ae19 | 4 | plugin_LTLIBRARIES = babeltrace-plugin-text.la |
a6fe9093 | 5 | |
14428ba5 MJ |
6 | babeltrace_plugin_text_la_SOURCES = \ |
7 | details/colors.h \ | |
8 | details/details.c \ | |
9 | details/details.h \ | |
10 | details/obj-lifetime-mgmt.c \ | |
11 | details/obj-lifetime-mgmt.h \ | |
12 | details/write.c \ | |
13 | details/write.h \ | |
14 | dmesg/dmesg.c \ | |
15 | dmesg/dmesg.h \ | |
16 | pretty/pretty.c \ | |
17 | pretty/pretty.h \ | |
18 | pretty/print.c \ | |
19 | plugin.c | |
20 | ||
22e7ae19 | 21 | babeltrace_plugin_text_la_LDFLAGS = \ |
0b0893d4 | 22 | $(AM_LDFLAGS) \ |
c5410abe | 23 | $(LT_NO_UNDEFINED) \ |
5e8a0751 | 24 | -avoid-version -module $(LD_NOTEXT) |
22e7ae19 | 25 | |
14428ba5 | 26 | babeltrace_plugin_text_la_LIBADD = |
c3ddb532 | 27 | |
9ffc0257 | 28 | if !ENABLE_BUILT_IN_PLUGINS |
22e7ae19 | 29 | babeltrace_plugin_text_la_LIBADD += \ |
578e048b MJ |
30 | $(top_builddir)/src/lib/libbabeltrace2.la \ |
31 | $(top_builddir)/src/common/libbabeltrace2-common.la \ | |
86ef6105 | 32 | $(top_builddir)/src/logging/liblogging.la \ |
48a0e52c SM |
33 | $(top_builddir)/src/compat/libcompat.la \ |
34 | $(top_builddir)/src/plugins/common/param-validation/libbabeltrace2-param-validation.la | |
c3ddb532 | 35 | endif |