1 # SPDX-License-Identifier: GPL-2.0-only
3 AUTOMAKE_OPTIONS = subdir-objects
23 noinst_LTLIBRARIES += libargpar.la
24 libargpar_la_SOURCES = \
30 noinst_LTLIBRARIES += libargpar-utils.la
31 libargpar_utils_la_SOURCES = \
32 argpar-utils/argpar-utils.cpp \
33 argpar-utils/argpar-utils.h
37 noinst_LTLIBRARIES += libbytecode.la
38 libbytecode_la_SOURCES = \
39 bytecode/bytecode.cpp \
43 # The libcommon-lgpl static archive contains only LGPLv2.1 code. It is
44 # meant to be used by LGPLv2.1 libraries such as liblttng-ctl. It also
45 # contains libcommon-lgpl.la.
47 noinst_LTLIBRARIES += libcommon-lgpl.la
48 libcommon_lgpl_la_SOURCES = \
53 actions/rotate-session.cpp \
54 actions/snapshot-session.cpp \
55 actions/start-session.cpp \
56 actions/stop-session.cpp \
57 actions/rate-policy.cpp \
58 buffer-view.h buffer-view.cpp \
60 conditions/buffer-usage.cpp \
61 conditions/condition.cpp \
62 conditions/event-rule-matches.cpp \
63 conditions/session-consumed-size.cpp \
64 conditions/session-rotation.cpp \
65 credentials.cpp credentials.h \
68 dynamic-array.cpp dynamic-array.h \
69 dynamic-buffer.cpp dynamic-buffer.h \
74 event-expr/event-expr.cpp \
75 event-field-value.cpp \
76 event-rule/event-rule.cpp \
77 event-rule/kernel-kprobe.cpp \
78 event-rule/kernel-syscall.cpp \
79 event-rule/kernel-uprobe.cpp \
80 event-rule/kernel-tracepoint.cpp \
81 event-rule/user-tracepoint.cpp \
82 event-rule/log4j-logging.cpp \
83 event-rule/jul-logging.cpp \
84 event-rule/python-logging.cpp \
85 fd-handle.cpp fd-handle.h \
89 mi-lttng.cpp mi-lttng.h \
91 payload.cpp payload.h \
92 payload-view.cpp payload-view.h \
93 readwrite.cpp readwrite.h \
95 session-descriptor.cpp \
96 snapshot.cpp snapshot.h \
97 spawn-viewer.cpp spawn-viewer.h \
100 tracker.cpp tracker.h \
104 userspace-probe.cpp \
108 libcommon_lgpl_la_SOURCES += \
109 lttng-elf.cpp lttng-elf.h
112 libcommon_lgpl_la_LIBADD = \
117 libhashtable-lgpl.la \
118 $(top_builddir)/src/vendor/msgpack/libmsgpack.la
121 # The libpath static archive contains GPLv2 compatible code. It is
122 # meant to be used by GPL executables.
123 noinst_LTLIBRARIES += libpath.la
124 libpath_la_SOURCES = \
128 # The libcommon-gpl static archive contains GPLv2 compatible code. It is
129 # meant to be used by GPL executables.
130 noinst_LTLIBRARIES += libcommon-gpl.la
131 libcommon_gpl_la_SOURCES = \
133 context.cpp context.h \
134 daemonize.cpp daemonize.h \
136 filter.cpp filter.h \
137 fs-handle.cpp fs-handle.h fs-handle-internal.h \
139 index-allocator.cpp index-allocator.h \
143 trace-chunk.cpp trace-chunk.h \
144 trace-chunk-registry.h \
148 libcommon_gpl_la_LIBADD = \
152 libhashtable-gpl.la \
157 noinst_LTLIBRARIES += libcompat.la
158 libcompat_la_SOURCES = \
159 compat/compat-fcntl.cpp \
160 compat/directory-handle.cpp \
161 compat/directory-handle.h \
181 noinst_LTLIBRARIES += libconfig.la
182 libconfig_la_SOURCES = \
183 config/config-internal.h \
184 config/config-session-abi.h \
185 config/session-config.cpp \
186 config/session-config.h
188 libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
189 libconfig_la_LIBADD = ${libxml2_LIBS}
192 if BUILD_LIB_CONSUMER
193 noinst_LTLIBRARIES += libconsumer.la
195 libconsumer_la_SOURCES = \
196 consumer/consumer.cpp \
197 consumer/consumer.h \
198 consumer/consumer-metadata-cache.cpp \
199 consumer/consumer-metadata-cache.h \
200 consumer/consumer-stream.cpp \
201 consumer/consumer-stream.h \
202 consumer/consumer-testpoint.h \
203 consumer/consumer-timer.cpp \
204 consumer/consumer-timer.h \
205 consumer/metadata-bucket.cpp \
206 consumer/metadata-bucket.h
208 libconsumer_la_LIBADD = \
209 libkernel-consumer.la \
213 if HAVE_LIBLTTNG_UST_CTL
214 libconsumer_la_LIBADD += \
217 endif # BUILD_LIB_CONSUMER
221 noinst_LTLIBRARIES += libfd-tracker.la
222 libfd_tracker_la_SOURCES = \
223 fd-tracker/fd-tracker.cpp \
224 fd-tracker/fd-tracker.h \
225 fd-tracker/inode.cpp \
227 fd-tracker/utils.cpp \
229 fd-tracker/utils-poll.cpp
233 noinst_LTLIBRARIES += libfilter.la
235 libfilter_la_SOURCES = \
236 filter/filter-ast.h \
238 filter/filter-lexer.lpp \
239 filter/filter-parser.ypp \
240 filter/filter-symbols.h \
241 filter/filter-visitor-generate-bytecode.cpp \
242 filter/filter-visitor-generate-ir.cpp \
243 filter/filter-visitor-ir-check-binary-op-nesting.cpp \
244 filter/filter-visitor-ir-normalize-glob-patterns.cpp \
245 filter/filter-visitor-ir-validate-globbing.cpp \
246 filter/filter-visitor-ir-validate-string.cpp \
247 filter/filter-visitor-xml.cpp \
250 BUILT_SOURCES += filter/filter-parser.hpp
252 libfilter_la_CXXFLAGS = -include filter-symbols.h $(AM_CXXFLAGS)
253 libfilter_la_CPPFLAGS = -I$(srcdir)/filter -I$(builddir)/filter $(AM_CPPFLAGS)
254 libfilter_la_LIBADD = libstring-utils.la
256 AM_YFLAGS = -t -d -v -Wno-yacc
258 # start with empty files to clean
262 # we have bison: we can clean the generated parser files
264 filter/filter-parser.cpp \
265 filter/filter-parser.hpp \
266 filter/filter-parser.output
268 # create target used to stop the build if we want to build the parser,
269 # but we don't have the necessary tool to do so
270 filter/filter-parser.cpp filter/filter-parser.hpp: filter/filter-parser.ypp
271 @echo "Error: Cannot build target because bison is missing."
272 @echo "Make sure bison is installed and run the configure script again."
275 BUILT_SOURCES += filter/filter-parser.cpp filter/filter-parser.hpp
279 # we have flex: we can clean the generated lexer files
280 CLEANFILES += filter/filter-lexer.cpp
282 # create target used to stop the build if we want to build the lexer,
283 # but we don't have the necessary tool to do so
284 filter/filter-lexer.cpp: filter/filter-lexer.lpp
285 @echo "Error: Cannot build target because flex is missing."
286 @echo "Make sure flex is installed and run the configure script again."
289 BUILT_SOURCES += filter/filter-lexer.cpp
293 noinst_LTLIBRARIES += libhashtable-lgpl.la
294 libhashtable_lgpl_la_SOURCES = \
296 hashtable/utils.cpp \
300 noinst_LTLIBRARIES += libhashtable-gpl.la
301 libhashtable_gpl_la_SOURCES = \
302 hashtable/hashtable.cpp \
303 hashtable/hashtable.h \
304 hashtable/hashtable-symbols.h
306 libhashtable_gpl_la_LIBADD = \
312 noinst_LTLIBRARIES += libhealth.la
314 libhealth_la_SOURCES = \
320 noinst_LTLIBRARIES += libini-config.la
321 libini_config_la_SOURCES = \
324 ini-config/ini-config.cpp \
325 ini-config/ini-config.h
329 noinst_LTLIBRARIES += libindex.la
331 libindex_la_SOURCES = \
338 if BUILD_LIB_KERNEL_CTL
339 noinst_LTLIBRARIES += libkernel-ctl.la
341 libkernel_ctl_la_SOURCES = \
342 kernel-ctl/kernel-ctl.cpp \
343 kernel-ctl/kernel-ctl.h \
344 kernel-ctl/kernel-ioctl.h
347 if BUILD_LIB_SESSIOND_COMM
348 noinst_LTLIBRARIES += libsessiond-comm.la
350 libsessiond_comm_la_SOURCES = \
351 sessiond-comm/agent.h \
352 sessiond-comm/inet.cpp \
353 sessiond-comm/inet.h \
354 sessiond-comm/inet6.cpp \
355 sessiond-comm/inet6.h \
356 sessiond-comm/relayd.h \
357 sessiond-comm/sessiond-comm.cpp \
358 sessiond-comm/sessiond-comm.h
362 noinst_LTLIBRARIES += librelayd.la
364 librelayd_la_SOURCES = \
368 librelayd_la_LIBADD = libsessiond-comm.la
372 if BUILD_LIB_KERNEL_CONSUMER
373 noinst_LTLIBRARIES += libkernel-consumer.la
375 libkernel_consumer_la_SOURCES = \
376 kernel-consumer/kernel-consumer.cpp \
377 kernel-consumer/kernel-consumer.h
379 libkernel_consumer_la_LIBADD = \
383 if BUILD_LIB_UST_CONSUMER
384 if HAVE_LIBLTTNG_UST_CTL
385 noinst_LTLIBRARIES += libust-consumer.la
387 libust_consumer_la_SOURCES = \
388 ust-consumer/ust-consumer.cpp \
389 ust-consumer/ust-consumer.h
391 libust_consumer_la_LIBADD = \
396 if BUILD_LIB_TESTPOINT
397 noinst_LTLIBRARIES += libtestpoint.la
399 libtestpoint_la_SOURCES = \
400 testpoint/testpoint.cpp \
401 testpoint/testpoint.h
403 libtestpoint_la_LIBADD = $(DL_LIBS)
408 noinst_LTLIBRARIES += libstring-utils.la
409 libstring_utils_la_SOURCES = \
410 string-utils/format.h \
411 string-utils/string-utils.cpp \
412 string-utils/string-utils.h
415 noinst_PROGRAMS = filter-grammar-test
416 filter_grammar_test_SOURCES = filter-grammar-test.cpp
417 filter_grammar_test_LDADD = libcommon-gpl.la
423 xmldir = $(datadir)/xml/lttng
424 dist_xml_DATA = session.xsd
426 # Copy EXTRA_DIST files to the build directory
428 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
429 for script in $(EXTRA_DIST); do \
430 cp -f $(srcdir)/$$script $(builddir); \
435 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
436 for script in $(EXTRA_DIST); do \
437 rm -f $(builddir)/$$script; \