Refactor: lttng-ctl: follow terminology of the tracker documentation
[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
9c55c241 5SUBDIRS = string-utils
87fb9fc0
JR
6
7# Make sure to always distribute all folders
8# since SUBDIRS is decided at configure time.
28b6dfc8
SM
9DIST_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
b3f35e02
FD
25# Common library
26noinst_LTLIBRARIES = libcommon.la
01fac814 27EXTRA_DIST = mi-lttng-4.0.xsd
b3f35e02 28
28b6dfc8
SM
29libcommon_la_SOURCES = \
30 action.c \
31 buffer-usage.c \
32 buffer-view.h buffer-view.c \
33 common.h \
34 condition.c \
35 context.c context.h \
36 credentials.h \
37 daemonize.c daemonize.h \
38 defaults.c \
39 dynamic-array.c dynamic-array.h \
40 dynamic-buffer.c dynamic-buffer.h \
41 endpoint.c \
42 error.c error.h \
43 evaluation.c \
44 event.c \
45 filter.c filter.h \
46 futex.c futex.h \
47 location.c \
48 mi-lttng.c mi-lttng.h \
49 notification.c \
50 notify.c \
51 optional.h \
52 pipe.c pipe.h \
53 readwrite.c readwrite.h \
54 runas.c runas.h \
55 session-consumed-size.c \
56 session-descriptor.c \
57 session-rotation.c \
58 time.c \
59 trace-chunk.c trace-chunk.h \
60 trace-chunk-registry.h \
61 trigger.c \
62 unix.c unix.h \
63 uri.c uri.h \
64 userspace-probe.c \
65 utils.c utils.h \
66 uuid.c uuid.h \
159b042f 67 tracker.c tracker.h \
f5ea0241
JG
68 waiter.c waiter.h \
69 fs-handle.h fs-handle-internal.h fs-handle.c
b3f35e02 70
b1b34226 71if HAVE_ELF_H
28b6dfc8
SM
72libcommon_la_SOURCES += \
73 lttng-elf.c lttng-elf.h
b1b34226
MJ
74endif
75
b3f35e02 76libcommon_la_LIBADD = \
28b6dfc8
SM
77 $(top_builddir)/src/common/config/libconfig.la \
78 $(top_builddir)/src/common/compat/libcompat.la \
8bb66c3c
JG
79 $(top_builddir)/src/common/hashtable/libhashtable.la \
80 $(top_builddir)/src/common/fd-tracker/libfd-tracker.la
b3f35e02 81
87fb9fc0
JR
82if BUILD_LIB_COMPAT
83SUBDIRS += compat
84endif
85
86if BUILD_LIB_HEALTH
87SUBDIRS += health
88endif
89
90if BUILD_LIB_HASHTABLE
91SUBDIRS += hashtable
92endif
93
94if BUILD_LIB_KERNEL_CTL
95SUBDIRS += kernel-ctl
96endif
97
98if BUILD_LIB_SESSIOND_COMM
99SUBDIRS += sessiond-comm
100endif
101
102if BUILD_LIB_RELAYD
aa360a35
JG
103SUBDIRS += relayd
104endif
105
106if BUILD_LIB_FD_TRACKER
107SUBDIRS += fd-tracker
87fb9fc0
JR
108endif
109
110if BUILD_LIB_KERNEL_CONSUMER
111SUBDIRS += kernel-consumer
112endif
113
114if BUILD_LIB_UST_CONSUMER
115SUBDIRS += ust-consumer
116endif
117
118if BUILD_LIB_TESTPOINT
119SUBDIRS += testpoint
120endif
121
122if BUILD_LIB_INDEX
123SUBDIRS += index
124endif
125
126if BUILD_LIB_CONFIG
127SUBDIRS += config
128endif
129
130if BUILD_LIB_CONSUMER
131SUBDIRS += consumer
132endif
10a8a223 133
28b6dfc8
SM
134noinst_HEADERS = \
135 align.h \
136 bug.h \
137 defaults.h \
138 error.h \
139 futex.h \
140 lttng-kernel.h \
141 lttng-kernel-old.h \
142 macros.h \
143 time.h \
144 uri.h \
145 utils.h
1c39da61 146
c49fc5e4
JR
147all-local:
148 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
149 for script in $(EXTRA_DIST); do \
150 cp -f $(srcdir)/$$script $(builddir); \
151 done; \
152 fi
153
154clean-local:
155 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
156 for script in $(EXTRA_DIST); do \
157 rm -f $(builddir)/$$script; \
158 done; \
159 fi
This page took 0.060154 seconds and 4 git commands to generate.