lttng-ctl: Introduce lttng_log_level_rule
[lttng-tools.git] / src / common / Makefile.am
CommitLineData
ab5be9fa
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
26821431
MD
3AUTOMAKE_OPTIONS = subdir-objects
4
e2fb96d8
SM
5SUBDIRS = \
6 string-utils \
0ae3cfc6 7 bytecode \
e2fb96d8
SM
8 filter \
9 argpar
87fb9fc0
JR
10
11# Make sure to always distribute all folders
12# since SUBDIRS is decided at configure time.
28b6dfc8
SM
13DIST_SUBDIRS = \
14 compat \
15 health \
16 hashtable \
17 kernel-ctl \
18 sessiond-comm \
19 relayd \
20 kernel-consumer \
21 ust-consumer \
22 testpoint \
23 index \
24 config \
25 consumer \
26 string-utils \
e4d2f27a 27 fd-tracker \
0ae3cfc6 28 bytecode \
e2fb96d8
SM
29 filter \
30 argpar
31
b3f35e02
FD
32# Common library
33noinst_LTLIBRARIES = libcommon.la
01fac814 34EXTRA_DIST = mi-lttng-4.0.xsd
b3f35e02 35
28b6dfc8 36libcommon_la_SOURCES = \
03bb2358 37 actions/action.c \
0c51e8f3 38 actions/group.c \
03bb2358 39 actions/notify.c \
bfb2ec6a 40 actions/rotate-session.c \
757c48a2 41 actions/snapshot-session.c \
58397d0d 42 actions/start-session.c \
931bdbaa 43 actions/stop-session.c \
28b6dfc8
SM
44 buffer-view.h buffer-view.c \
45 common.h \
ae20d1bd
JR
46 conditions/buffer-usage.c \
47 conditions/condition.c \
e393070a 48 conditions/on-event.c \
ae20d1bd
JR
49 conditions/session-consumed-size.c \
50 conditions/session-rotation.c \
28b6dfc8 51 context.c context.h \
894e6e1c 52 credentials.c credentials.h \
28b6dfc8
SM
53 daemonize.c daemonize.h \
54 defaults.c \
c0374092 55 domain.c \
28b6dfc8
SM
56 dynamic-array.c dynamic-array.h \
57 dynamic-buffer.c dynamic-buffer.h \
58 endpoint.c \
59 error.c error.h \
60 evaluation.c \
61 event.c \
748b5f7b 62 event-expr-to-bytecode.c event-expr-to-bytecode.h \
d28fcdec 63 event-field-value.c \
7a3dcaf6 64 event-rule/event-rule.c \
a3c51653 65 event-rule/kernel-probe.c \
e6a39346 66 event-rule/syscall.c \
e957bf98 67 event-rule/userspace-probe.c \
6d420eff 68 event-rule/tracepoint.c \
28b6dfc8 69 filter.c filter.h \
dd1bac00 70 fd-handle.c fd-handle.h \
75e36e37 71 fs-handle.c fs-handle.h fs-handle-internal.h \
28b6dfc8 72 futex.c futex.h \
808cb744 73 kernel-probe.c \
28b6dfc8 74 location.c \
85b05318 75 log-level-rule.c \
28b6dfc8
SM
76 mi-lttng.c mi-lttng.h \
77 notification.c \
28b6dfc8 78 optional.h \
9e620ea7
JG
79 payload.c payload.h \
80 payload-view.c payload-view.h \
28b6dfc8
SM
81 pipe.c pipe.h \
82 readwrite.c readwrite.h \
83 runas.c runas.h \
28b6dfc8 84 session-descriptor.c \
b30fa191 85 snapshot.c snapshot.h \
dd392e94 86 spawn-viewer.c spawn-viewer.h \
28b6dfc8
SM
87 time.c \
88 trace-chunk.c trace-chunk.h \
89 trace-chunk-registry.h \
90 trigger.c \
91 unix.c unix.h \
92 uri.c uri.h \
93 userspace-probe.c \
94 utils.c utils.h \
95 uuid.c uuid.h \
cb8d0d24 96 thread.c thread.h \
159b042f 97 tracker.c tracker.h \
75e36e37 98 waiter.c waiter.h
b3f35e02 99
b1b34226 100if HAVE_ELF_H
28b6dfc8
SM
101libcommon_la_SOURCES += \
102 lttng-elf.c lttng-elf.h
b1b34226
MJ
103endif
104
b3f35e02 105libcommon_la_LIBADD = \
0ae3cfc6 106 $(top_builddir)/src/common/bytecode/libbytecode.la \
28b6dfc8
SM
107 $(top_builddir)/src/common/config/libconfig.la \
108 $(top_builddir)/src/common/compat/libcompat.la \
8bb66c3c 109 $(top_builddir)/src/common/hashtable/libhashtable.la \
e4d2f27a 110 $(top_builddir)/src/common/fd-tracker/libfd-tracker.la \
116a02e3
JG
111 $(top_builddir)/src/common/filter/libfilter.la \
112 $(top_builddir)/src/vendor/msgpack/libmsgpack.la
b3f35e02 113
87fb9fc0
JR
114if BUILD_LIB_COMPAT
115SUBDIRS += compat
116endif
117
118if BUILD_LIB_HEALTH
119SUBDIRS += health
120endif
121
122if BUILD_LIB_HASHTABLE
123SUBDIRS += hashtable
124endif
125
126if BUILD_LIB_KERNEL_CTL
127SUBDIRS += kernel-ctl
128endif
129
130if BUILD_LIB_SESSIOND_COMM
131SUBDIRS += sessiond-comm
132endif
133
134if BUILD_LIB_RELAYD
aa360a35
JG
135SUBDIRS += relayd
136endif
137
138if BUILD_LIB_FD_TRACKER
139SUBDIRS += fd-tracker
87fb9fc0
JR
140endif
141
142if BUILD_LIB_KERNEL_CONSUMER
143SUBDIRS += kernel-consumer
144endif
145
146if BUILD_LIB_UST_CONSUMER
147SUBDIRS += ust-consumer
148endif
149
150if BUILD_LIB_TESTPOINT
151SUBDIRS += testpoint
152endif
153
154if BUILD_LIB_INDEX
155SUBDIRS += index
156endif
157
158if BUILD_LIB_CONFIG
159SUBDIRS += config
160endif
161
162if BUILD_LIB_CONSUMER
163SUBDIRS += consumer
164endif
10a8a223 165
28b6dfc8
SM
166noinst_HEADERS = \
167 align.h \
168 bug.h \
169 defaults.h \
170 error.h \
171 futex.h \
172 lttng-kernel.h \
173 lttng-kernel-old.h \
174 macros.h \
175 time.h \
176 uri.h \
177 utils.h
1c39da61 178
c49fc5e4
JR
179all-local:
180 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
181 for script in $(EXTRA_DIST); do \
182 cp -f $(srcdir)/$$script $(builddir); \
183 done; \
184 fi
185
186clean-local:
187 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
188 for script in $(EXTRA_DIST); do \
189 rm -f $(builddir)/$$script; \
190 done; \
191 fi
This page took 0.059661 seconds and 4 git commands to generate.