Rename lttng_event_rule_userspace_probe to lttng_event_rule_kernel_uprobe
[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 \
ad63a966 38 actions/list.c \
03bb2358 39 actions/notify.c \
27993cc2 40 actions/path.c \
bfb2ec6a 41 actions/rotate-session.c \
757c48a2 42 actions/snapshot-session.c \
58397d0d 43 actions/start-session.c \
931bdbaa 44 actions/stop-session.c \
7f4d5b07 45 actions/rate-policy.c \
28b6dfc8
SM
46 buffer-view.h buffer-view.c \
47 common.h \
ae20d1bd
JR
48 conditions/buffer-usage.c \
49 conditions/condition.c \
670a26e4 50 conditions/event-rule-matches.c \
ae20d1bd
JR
51 conditions/session-consumed-size.c \
52 conditions/session-rotation.c \
28b6dfc8 53 context.c context.h \
894e6e1c 54 credentials.c credentials.h \
28b6dfc8
SM
55 daemonize.c daemonize.h \
56 defaults.c \
c0374092 57 domain.c \
28b6dfc8
SM
58 dynamic-array.c dynamic-array.h \
59 dynamic-buffer.c dynamic-buffer.h \
60 endpoint.c \
61 error.c error.h \
b99a0cb3 62 error-query.c \
28b6dfc8
SM
63 evaluation.c \
64 event.c \
748b5f7b 65 event-expr-to-bytecode.c event-expr-to-bytecode.h \
d28fcdec 66 event-field-value.c \
7a3dcaf6 67 event-rule/event-rule.c \
a3c51653 68 event-rule/kernel-probe.c \
4f7da553 69 event-rule/kernel-syscall.c \
46fd07ac 70 event-rule/kernel-uprobe.c \
6d420eff 71 event-rule/tracepoint.c \
28b6dfc8 72 filter.c filter.h \
dd1bac00 73 fd-handle.c fd-handle.h \
75e36e37 74 fs-handle.c fs-handle.h fs-handle-internal.h \
28b6dfc8 75 futex.c futex.h \
808cb744 76 kernel-probe.c \
246611b0 77 index-allocator.c index-allocator.h \
28b6dfc8 78 location.c \
85b05318 79 log-level-rule.c \
28b6dfc8
SM
80 mi-lttng.c mi-lttng.h \
81 notification.c \
28b6dfc8 82 optional.h \
9e620ea7
JG
83 payload.c payload.h \
84 payload-view.c payload-view.h \
28b6dfc8
SM
85 pipe.c pipe.h \
86 readwrite.c readwrite.h \
87 runas.c runas.h \
b7fc068d 88 shm.c shm.h \
28b6dfc8 89 session-descriptor.c \
b30fa191 90 snapshot.c snapshot.h \
dd392e94 91 spawn-viewer.c spawn-viewer.h \
28b6dfc8
SM
92 time.c \
93 trace-chunk.c trace-chunk.h \
94 trace-chunk-registry.h \
95 trigger.c \
96 unix.c unix.h \
97 uri.c uri.h \
98 userspace-probe.c \
99 utils.c utils.h \
100 uuid.c uuid.h \
cb8d0d24 101 thread.c thread.h \
159b042f 102 tracker.c tracker.h \
75e36e37 103 waiter.c waiter.h
b3f35e02 104
b1b34226 105if HAVE_ELF_H
28b6dfc8
SM
106libcommon_la_SOURCES += \
107 lttng-elf.c lttng-elf.h
b1b34226
MJ
108endif
109
b3f35e02 110libcommon_la_LIBADD = \
0ae3cfc6 111 $(top_builddir)/src/common/bytecode/libbytecode.la \
28b6dfc8
SM
112 $(top_builddir)/src/common/config/libconfig.la \
113 $(top_builddir)/src/common/compat/libcompat.la \
8bb66c3c 114 $(top_builddir)/src/common/hashtable/libhashtable.la \
e4d2f27a 115 $(top_builddir)/src/common/fd-tracker/libfd-tracker.la \
116a02e3
JG
116 $(top_builddir)/src/common/filter/libfilter.la \
117 $(top_builddir)/src/vendor/msgpack/libmsgpack.la
b3f35e02 118
87fb9fc0
JR
119if BUILD_LIB_COMPAT
120SUBDIRS += compat
121endif
122
123if BUILD_LIB_HEALTH
124SUBDIRS += health
125endif
126
127if BUILD_LIB_HASHTABLE
128SUBDIRS += hashtable
129endif
130
131if BUILD_LIB_KERNEL_CTL
132SUBDIRS += kernel-ctl
133endif
134
135if BUILD_LIB_SESSIOND_COMM
136SUBDIRS += sessiond-comm
137endif
138
139if BUILD_LIB_RELAYD
aa360a35
JG
140SUBDIRS += relayd
141endif
142
143if BUILD_LIB_FD_TRACKER
144SUBDIRS += fd-tracker
87fb9fc0
JR
145endif
146
147if BUILD_LIB_KERNEL_CONSUMER
148SUBDIRS += kernel-consumer
149endif
150
151if BUILD_LIB_UST_CONSUMER
152SUBDIRS += ust-consumer
153endif
154
155if BUILD_LIB_TESTPOINT
156SUBDIRS += testpoint
157endif
158
159if BUILD_LIB_INDEX
160SUBDIRS += index
161endif
162
163if BUILD_LIB_CONFIG
164SUBDIRS += config
165endif
166
167if BUILD_LIB_CONSUMER
168SUBDIRS += consumer
169endif
10a8a223 170
28b6dfc8
SM
171noinst_HEADERS = \
172 align.h \
173 bug.h \
174 defaults.h \
175 error.h \
176 futex.h \
177 lttng-kernel.h \
178 lttng-kernel-old.h \
179 macros.h \
180 time.h \
181 uri.h \
182 utils.h
1c39da61 183
e358ddd5
JG
184noinst_PROGRAMS = filter-grammar-test
185filter_grammar_test_SOURCES = filter-grammar-test.c
186filter_grammar_test_LDADD = \
187 libcommon.la
e358ddd5 188
c49fc5e4
JR
189all-local:
190 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
191 for script in $(EXTRA_DIST); do \
192 cp -f $(srcdir)/$$script $(builddir); \
193 done; \
194 fi
195
196clean-local:
197 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
198 for script in $(EXTRA_DIST); do \
199 rm -f $(builddir)/$$script; \
200 done; \
201 fi
This page took 0.061877 seconds and 4 git commands to generate.