Reduce the number of Makefiles in 'src/'
[babeltrace.git] / src / plugins / text / Makefile.am
1 # SPDX-License-Identifier: MIT
2
3 plugindir = "$(BABELTRACE_PLUGINS_DIR)"
4 plugin_LTLIBRARIES = babeltrace-plugin-text.la
5
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
21 babeltrace_plugin_text_la_LDFLAGS = \
22 $(AM_LDFLAGS) \
23 $(LT_NO_UNDEFINED) \
24 -avoid-version -module $(LD_NOTEXT)
25
26 babeltrace_plugin_text_la_LIBADD =
27
28 if !ENABLE_BUILT_IN_PLUGINS
29 babeltrace_plugin_text_la_LIBADD += \
30 $(top_builddir)/src/lib/libbabeltrace2.la \
31 $(top_builddir)/src/common/libbabeltrace2-common.la \
32 $(top_builddir)/src/logging/liblogging.la \
33 $(top_builddir)/src/compat/libcompat.la \
34 $(top_builddir)/src/plugins/common/param-validation/libbabeltrace2-param-validation.la
35 endif
This page took 0.030135 seconds and 4 git commands to generate.