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