ust-app: pass down trigger object instead of event-rule
[lttng-tools.git] / src / common / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AUTOMAKE_OPTIONS = subdir-objects
4
5 SUBDIRS = \
6 string-utils \
7 bytecode \
8 filter \
9 argpar
10
11 # Make sure to always distribute all folders
12 # since SUBDIRS is decided at configure time.
13 DIST_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 \
27 fd-tracker \
28 bytecode \
29 filter \
30 argpar
31
32 # Common library
33 noinst_LTLIBRARIES = libcommon.la
34 EXTRA_DIST = mi-lttng-4.0.xsd
35
36 libcommon_la_SOURCES = \
37 actions/action.c \
38 actions/group.c \
39 actions/notify.c \
40 actions/rotate-session.c \
41 actions/snapshot-session.c \
42 actions/start-session.c \
43 actions/stop-session.c \
44 buffer-view.h buffer-view.c \
45 common.h \
46 conditions/buffer-usage.c \
47 conditions/condition.c \
48 conditions/event-rule.c \
49 conditions/session-consumed-size.c \
50 conditions/session-rotation.c \
51 context.c context.h \
52 credentials.c credentials.h \
53 daemonize.c daemonize.h \
54 defaults.c \
55 domain.c \
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 \
62 event-expr-to-bytecode.c event-expr-to-bytecode.h \
63 event-rule/event-rule.c \
64 event-rule/kprobe.c \
65 event-rule/syscall.c \
66 event-rule/uprobe.c \
67 event-rule/tracepoint.c \
68 filter.c filter.h \
69 fd-handle.c fd-handle.h \
70 fs-handle.c fs-handle.h fs-handle-internal.h \
71 futex.c futex.h \
72 kernel-probe.c \
73 location.c \
74 mi-lttng.c mi-lttng.h \
75 notification.c \
76 optional.h \
77 payload.c payload.h \
78 payload-view.c payload-view.h \
79 pipe.c pipe.h \
80 readwrite.c readwrite.h \
81 runas.c runas.h \
82 session-descriptor.c \
83 snapshot.c snapshot.h \
84 spawn-viewer.c spawn-viewer.h \
85 time.c \
86 trace-chunk.c trace-chunk.h \
87 trace-chunk-registry.h \
88 trigger.c \
89 unix.c unix.h \
90 uri.c uri.h \
91 userspace-probe.c \
92 utils.c utils.h \
93 uuid.c uuid.h \
94 thread.c thread.h \
95 tracker.c tracker.h \
96 waiter.c waiter.h
97
98 if HAVE_ELF_H
99 libcommon_la_SOURCES += \
100 lttng-elf.c lttng-elf.h
101 endif
102
103 libcommon_la_LIBADD = \
104 $(top_builddir)/src/common/bytecode/libbytecode.la \
105 $(top_builddir)/src/common/config/libconfig.la \
106 $(top_builddir)/src/common/compat/libcompat.la \
107 $(top_builddir)/src/common/hashtable/libhashtable.la \
108 $(top_builddir)/src/common/fd-tracker/libfd-tracker.la \
109 $(top_builddir)/src/common/filter/libfilter.la
110
111 if BUILD_LIB_COMPAT
112 SUBDIRS += compat
113 endif
114
115 if BUILD_LIB_HEALTH
116 SUBDIRS += health
117 endif
118
119 if BUILD_LIB_HASHTABLE
120 SUBDIRS += hashtable
121 endif
122
123 if BUILD_LIB_KERNEL_CTL
124 SUBDIRS += kernel-ctl
125 endif
126
127 if BUILD_LIB_SESSIOND_COMM
128 SUBDIRS += sessiond-comm
129 endif
130
131 if BUILD_LIB_RELAYD
132 SUBDIRS += relayd
133 endif
134
135 if BUILD_LIB_FD_TRACKER
136 SUBDIRS += fd-tracker
137 endif
138
139 if BUILD_LIB_KERNEL_CONSUMER
140 SUBDIRS += kernel-consumer
141 endif
142
143 if BUILD_LIB_UST_CONSUMER
144 SUBDIRS += ust-consumer
145 endif
146
147 if BUILD_LIB_TESTPOINT
148 SUBDIRS += testpoint
149 endif
150
151 if BUILD_LIB_INDEX
152 SUBDIRS += index
153 endif
154
155 if BUILD_LIB_CONFIG
156 SUBDIRS += config
157 endif
158
159 if BUILD_LIB_CONSUMER
160 SUBDIRS += consumer
161 endif
162
163 noinst_HEADERS = \
164 align.h \
165 bug.h \
166 defaults.h \
167 error.h \
168 futex.h \
169 lttng-kernel.h \
170 lttng-kernel-old.h \
171 macros.h \
172 time.h \
173 uri.h \
174 utils.h
175
176 all-local:
177 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
178 for script in $(EXTRA_DIST); do \
179 cp -f $(srcdir)/$$script $(builddir); \
180 done; \
181 fi
182
183 clean-local:
184 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
185 for script in $(EXTRA_DIST); do \
186 rm -f $(builddir)/$$script; \
187 done; \
188 fi
This page took 0.03371 seconds and 5 git commands to generate.