sessiond: ust: conditionally enable the underscore prefix variant quirk
[lttng-tools.git] / src / common / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2
3AUTOMAKE_OPTIONS = subdir-objects
4noinst_LTLIBRARIES =
5
6BUILT_SOURCES =
7
8noinst_HEADERS = \
9 align.hpp \
10 bug.hpp \
11 defaults.hpp \
12 error.hpp \
13 futex.hpp \
14 lttng-kernel.hpp \
15 lttng-kernel-old.hpp \
16 macros.hpp \
17 time.hpp \
18 uri.hpp \
19 utils.hpp
20
21
22# libargpar
23noinst_LTLIBRARIES += libargpar.la
24libargpar_la_SOURCES = \
25 argpar/argpar.c \
26 argpar/argpar.h
27
28
29# libargpar-utils
30noinst_LTLIBRARIES += libargpar-utils.la
31libargpar_utils_la_SOURCES = \
32 argpar-utils/argpar-utils.cpp \
33 argpar-utils/argpar-utils.hpp
34
35
36# libbytecode
37noinst_LTLIBRARIES += libbytecode.la
38libbytecode_la_SOURCES = \
39 bytecode/bytecode.cpp \
40 bytecode/bytecode.hpp
41
42
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.
46
47noinst_LTLIBRARIES += libcommon-lgpl.la
48libcommon_lgpl_la_SOURCES = \
49 actions/action.cpp \
50 actions/list.cpp \
51 actions/notify.cpp \
52 actions/path.cpp \
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.hpp buffer-view.cpp \
59 channel.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.hpp \
66 defaults.cpp \
67 domain.cpp \
68 dynamic-array.cpp dynamic-array.hpp \
69 dynamic-buffer.cpp dynamic-buffer.hpp \
70 endpoint.cpp \
71 error.cpp error.hpp \
72 error-query.cpp \
73 evaluation.cpp \
74 event.cpp \
75 event-expr/event-expr.cpp \
76 event-field-value.cpp \
77 event-rule/event-rule.cpp \
78 event-rule/kernel-kprobe.cpp \
79 event-rule/kernel-syscall.cpp \
80 event-rule/kernel-uprobe.cpp \
81 event-rule/kernel-tracepoint.cpp \
82 event-rule/user-tracepoint.cpp \
83 event-rule/log4j-logging.cpp \
84 event-rule/jul-logging.cpp \
85 event-rule/python-logging.cpp \
86 exception.cpp exception.hpp \
87 file-descriptor.hpp \
88 fd-handle.cpp fd-handle.hpp\
89 format.hpp \
90 kernel-probe.cpp \
91 location.cpp \
92 locked-reference.hpp \
93 logging-utils.hpp logging-utils.cpp \
94 log-level-rule.cpp \
95 make-unique.hpp \
96 make-unique-wrapper.hpp \
97 mi-lttng.cpp mi-lttng.hpp \
98 notification.cpp \
99 payload.cpp payload.hpp \
100 payload-view.cpp payload-view.hpp \
101 pthread-lock.hpp \
102 random.cpp random.hpp \
103 readwrite.cpp readwrite.hpp \
104 runas.cpp runas.hpp \
105 scope-exit.hpp \
106 session-descriptor.cpp \
107 snapshot.cpp snapshot.hpp \
108 spawn-viewer.cpp spawn-viewer.hpp \
109 thread.cpp thread.hpp \
110 time.cpp \
111 tracker.cpp tracker.hpp \
112 trigger.cpp \
113 unix.cpp unix.hpp \
114 uri.cpp uri.hpp \
115 userspace-probe.cpp \
116 urcu.hpp \
117 utils.cpp utils.hpp
118
119if HAVE_ELF_H
120libcommon_lgpl_la_SOURCES += \
121 lttng-elf.cpp lttng-elf.hpp
122endif
123
124libcommon_lgpl_la_LIBADD = \
125 libbytecode.la \
126 libcompat.la \
127 libconfig.la \
128 libfilter.la \
129 libhashtable-lgpl.la \
130 $(top_builddir)/src/vendor/msgpack/libmsgpack.la
131
132
133# The libpath static archive contains GPLv2 compatible code. It is
134# meant to be used by GPL executables.
135noinst_LTLIBRARIES += libpath.la
136libpath_la_SOURCES = \
137 path.cpp path.hpp
138
139
140# The libcommon-gpl static archive contains GPLv2 compatible code. It is
141# meant to be used by GPL executables.
142noinst_LTLIBRARIES += libcommon-gpl.la
143libcommon_gpl_la_SOURCES = \
144 common.hpp \
145 context.cpp context.hpp \
146 daemonize.cpp daemonize.hpp \
147 filter.cpp filter.hpp \
148 fs-handle.cpp fs-handle.hpp fs-handle-internal.hpp \
149 futex.cpp futex.hpp \
150 index-allocator.cpp index-allocator.hpp \
151 optional.hpp \
152 pipe.cpp pipe.hpp \
153 shm.cpp shm.hpp \
154 trace-chunk.cpp trace-chunk.hpp \
155 trace-chunk-registry.hpp \
156 uuid.cpp uuid.hpp \
157 waiter.cpp waiter.hpp
158
159libcommon_gpl_la_LIBADD = \
160 libcommon-lgpl.la \
161 libpath.la \
162 libini-config.la \
163 libhashtable-gpl.la \
164 libfd-tracker.la
165
166
167# libcompat
168noinst_LTLIBRARIES += libcompat.la
169libcompat_la_SOURCES = \
170 compat/compat-fcntl.cpp \
171 compat/directory-handle.cpp \
172 compat/directory-handle.hpp \
173 compat/dirent.hpp \
174 compat/endian.hpp \
175 compat/errno.hpp \
176 compat/fcntl.hpp \
177 compat/getenv.hpp \
178 compat/mman.hpp \
179 compat/netdb.hpp \
180 compat/path.hpp \
181 compat/paths.hpp \
182 compat/poll.cpp \
183 compat/poll.hpp \
184 compat/pthread.hpp \
185 compat/socket.hpp \
186 compat/string.hpp \
187 compat/tid.hpp \
188 compat/time.hpp
189
190
191# libconfig
192noinst_LTLIBRARIES += libconfig.la
193libconfig_la_SOURCES = \
194 config/config-internal.hpp \
195 config/config-session-abi.hpp \
196 config/session-config.cpp \
197 config/session-config.hpp
198
199libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
200libconfig_la_LIBADD = ${libxml2_LIBS}
201
202
203if BUILD_LIB_CONSUMER
204noinst_LTLIBRARIES += libconsumer.la
205
206libconsumer_la_SOURCES = \
207 consumer/consumer.cpp \
208 consumer/consumer.hpp \
209 consumer/consumer-metadata-cache.cpp \
210 consumer/consumer-metadata-cache.hpp \
211 consumer/consumer-stream.cpp \
212 consumer/consumer-stream.hpp \
213 consumer/consumer-testpoint.hpp \
214 consumer/consumer-timer.cpp \
215 consumer/consumer-timer.hpp \
216 consumer/metadata-bucket.cpp \
217 consumer/metadata-bucket.hpp
218
219libconsumer_la_LIBADD = \
220 libkernel-consumer.la \
221 librelayd.la \
222 libsessiond-comm.la
223
224if HAVE_LIBLTTNG_UST_CTL
225libconsumer_la_LIBADD += \
226 libust-consumer.la
227endif
228endif # BUILD_LIB_CONSUMER
229
230
231# libfd-tracker
232noinst_LTLIBRARIES += libfd-tracker.la
233libfd_tracker_la_SOURCES = \
234 fd-tracker/fd-tracker.cpp \
235 fd-tracker/fd-tracker.hpp \
236 fd-tracker/inode.cpp \
237 fd-tracker/inode.hpp \
238 fd-tracker/utils.cpp \
239 fd-tracker/utils.hpp \
240 fd-tracker/utils-poll.cpp
241
242
243# libfilter
244noinst_LTLIBRARIES += libfilter.la
245
246libfilter_la_SOURCES = \
247 filter/filter-ast.hpp \
248 filter/filter-ir.hpp \
249 filter/filter-lexer.lpp \
250 filter/filter-parser.ypp \
251 filter/filter-symbols.hpp \
252 filter/filter-visitor-generate-bytecode.cpp \
253 filter/filter-visitor-generate-ir.cpp \
254 filter/filter-visitor-ir-check-binary-op-nesting.cpp \
255 filter/filter-visitor-ir-normalize-glob-patterns.cpp \
256 filter/filter-visitor-ir-validate-globbing.cpp \
257 filter/filter-visitor-ir-validate-string.cpp \
258 filter/filter-visitor-xml.cpp \
259 filter/memstream.hpp
260
261BUILT_SOURCES += filter/filter-parser.hpp
262
263# Disable some warning flags for generated sources.
264FILTER_WARN_FLAGS = \
265 -Wno-null-dereference \
266 -Wno-redundant-decls \
267 -Wno-unused-parameter
268
269libfilter_la_CFLAGS = $(AM_CFLAGS) $(FILTER_WARN_FLAGS)
270libfilter_la_CXXFLAGS = -include filter-symbols.hpp $(AM_CXXFLAGS) $(FILTER_WARN_FLAGS)
271libfilter_la_CPPFLAGS = -I$(srcdir)/filter -I$(builddir)/filter $(AM_CPPFLAGS)
272libfilter_la_LIBADD = libstring-utils.la
273
274AM_YFLAGS = -t -d -v -Wno-yacc
275
276# start with empty files to clean
277CLEANFILES =
278
279if HAVE_BISON
280# we have bison: we can clean the generated parser files
281CLEANFILES += \
282 filter/filter-parser.cpp \
283 filter/filter-parser.hpp \
284 filter/filter-parser.output
285else # HAVE_BISON
286# create target used to stop the build if we want to build the parser,
287# but we don't have the necessary tool to do so
288filter/filter-parser.cpp filter/filter-parser.hpp: filter/filter-parser.ypp
289 @echo "Error: Cannot build target because bison is missing."
290 @echo "Make sure bison is installed and run the configure script again."
291 @false
292
293BUILT_SOURCES += filter/filter-parser.cpp filter/filter-parser.hpp
294endif # HAVE_BISON
295
296if HAVE_FLEX
297# we have flex: we can clean the generated lexer files
298CLEANFILES += filter/filter-lexer.cpp
299else # HAVE_FLEX
300# create target used to stop the build if we want to build the lexer,
301# but we don't have the necessary tool to do so
302filter/filter-lexer.cpp: filter/filter-lexer.lpp
303 @echo "Error: Cannot build target because flex is missing."
304 @echo "Make sure flex is installed and run the configure script again."
305 @false
306
307BUILT_SOURCES += filter/filter-lexer.cpp
308endif # HAVE_FLEX
309
310
311noinst_LTLIBRARIES += libhashtable-lgpl.la
312libhashtable_lgpl_la_SOURCES = \
313 hashtable/seed.cpp \
314 hashtable/utils.cpp \
315 hashtable/utils.hpp
316
317
318noinst_LTLIBRARIES += libhashtable-gpl.la
319libhashtable_gpl_la_SOURCES = \
320 hashtable/hashtable.cpp \
321 hashtable/hashtable.hpp \
322 hashtable/hashtable-symbols.hpp
323
324libhashtable_gpl_la_LIBADD = \
325 $(URCU_LIBS) \
326 $(URCU_CDS_LIBS)
327
328
329if BUILD_LIB_HEALTH
330noinst_LTLIBRARIES += libhealth.la
331
332libhealth_la_SOURCES = \
333 health/health.cpp
334endif
335
336
337# libini-config
338noinst_LTLIBRARIES += libini-config.la
339libini_config_la_SOURCES = \
340 ini-config/ini.cpp \
341 ini-config/ini.hpp \
342 ini-config/ini-config.cpp \
343 ini-config/ini-config.hpp
344
345
346if BUILD_LIB_INDEX
347noinst_LTLIBRARIES += libindex.la
348
349libindex_la_SOURCES = \
350 index/ctf-index.hpp \
351 index/index.cpp \
352 index/index.hpp
353endif
354
355
356if BUILD_LIB_KERNEL_CTL
357noinst_LTLIBRARIES += libkernel-ctl.la
358
359libkernel_ctl_la_SOURCES = \
360 kernel-ctl/kernel-ctl.cpp \
361 kernel-ctl/kernel-ctl.hpp \
362 kernel-ctl/kernel-ioctl.hpp
363endif
364
365if BUILD_LIB_SESSIOND_COMM
366noinst_LTLIBRARIES += libsessiond-comm.la
367
368libsessiond_comm_la_SOURCES = \
369 sessiond-comm/agent.hpp \
370 sessiond-comm/inet.cpp \
371 sessiond-comm/inet.hpp \
372 sessiond-comm/inet6.cpp \
373 sessiond-comm/inet6.hpp \
374 sessiond-comm/relayd.hpp \
375 sessiond-comm/sessiond-comm.cpp \
376 sessiond-comm/sessiond-comm.hpp
377endif
378
379if BUILD_LIB_RELAYD
380noinst_LTLIBRARIES += librelayd.la
381
382librelayd_la_SOURCES = \
383 relayd/relayd.cpp \
384 relayd/relayd.hpp
385
386librelayd_la_LIBADD = libsessiond-comm.la
387endif
388
389
390if BUILD_LIB_KERNEL_CONSUMER
391noinst_LTLIBRARIES += libkernel-consumer.la
392
393libkernel_consumer_la_SOURCES = \
394 kernel-consumer/kernel-consumer.cpp \
395 kernel-consumer/kernel-consumer.hpp
396
397libkernel_consumer_la_LIBADD = \
398 libkernel-ctl.la
399endif
400
401if BUILD_LIB_UST_CONSUMER
402if HAVE_LIBLTTNG_UST_CTL
403noinst_LTLIBRARIES += libust-consumer.la
404
405libust_consumer_la_SOURCES = \
406 ust-consumer/ust-consumer.cpp \
407 ust-consumer/ust-consumer.hpp
408
409libust_consumer_la_LIBADD = \
410 $(UST_CTL_LIBS)
411endif
412endif
413
414if BUILD_LIB_TESTPOINT
415noinst_LTLIBRARIES += libtestpoint.la
416
417libtestpoint_la_SOURCES = \
418 testpoint/testpoint.cpp \
419 testpoint/testpoint.hpp
420
421libtestpoint_la_LIBADD = $(DL_LIBS)
422endif
423
424
425# libstring-utils
426noinst_LTLIBRARIES += libstring-utils.la
427libstring_utils_la_SOURCES = \
428 string-utils/format.hpp \
429 string-utils/string-utils.cpp \
430 string-utils/string-utils.hpp
431
432
433noinst_PROGRAMS = filter-grammar-test
434filter_grammar_test_SOURCES = filter-grammar-test.cpp
435filter_grammar_test_LDADD = libcommon-gpl.la
436
437EXTRA_DIST = \
438 mi-lttng-4.1.xsd \
439 session.xsd
440
441xmldir = $(datadir)/xml/lttng
442dist_xml_DATA = session.xsd
443
444# Copy EXTRA_DIST files to the build directory
445all-local:
446 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
447 for script in $(EXTRA_DIST); do \
448 cp -f $(srcdir)/$$script $(builddir); \
449 done; \
450 fi
451
452clean-local:
453 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
454 for script in $(EXTRA_DIST); do \
455 rm -f $(builddir)/$$script; \
456 done; \
457 fi
This page took 0.023677 seconds and 4 git commands to generate.