port: no HOST_NAME_MAX on FreeBSD, use LTTNG_HOST_NAME_MAX
[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
e4d2f27a 5SUBDIRS = string-utils filter
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 \
e4d2f27a
JR
23 fd-tracker \
24 filter
b3f35e02
FD
25# Common library
26noinst_LTLIBRARIES = libcommon.la
01fac814 27EXTRA_DIST = mi-lttng-4.0.xsd
b3f35e02 28
28b6dfc8 29libcommon_la_SOURCES = \
03bb2358 30 actions/action.c \
0c51e8f3 31 actions/group.c \
03bb2358 32 actions/notify.c \
bfb2ec6a 33 actions/rotate-session.c \
757c48a2 34 actions/snapshot-session.c \
58397d0d 35 actions/start-session.c \
931bdbaa 36 actions/stop-session.c \
28b6dfc8
SM
37 buffer-usage.c \
38 buffer-view.h buffer-view.c \
39 common.h \
40 condition.c \
41 context.c context.h \
894e6e1c 42 credentials.c credentials.h \
28b6dfc8
SM
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 \
7a3dcaf6 51 event-rule/event-rule.c \
077192fd 52 event-rule/kprobe.c \
e6a39346 53 event-rule/syscall.c \
df08d338 54 event-rule/uprobe.c \
6d420eff 55 event-rule/tracepoint.c \
28b6dfc8 56 filter.c filter.h \
dd1bac00 57 fd-handle.c fd-handle.h \
75e36e37 58 fs-handle.c fs-handle.h fs-handle-internal.h \
28b6dfc8 59 futex.c futex.h \
808cb744 60 kernel-probe.c \
28b6dfc8
SM
61 location.c \
62 mi-lttng.c mi-lttng.h \
63 notification.c \
28b6dfc8 64 optional.h \
9e620ea7
JG
65 payload.c payload.h \
66 payload-view.c payload-view.h \
28b6dfc8
SM
67 pipe.c pipe.h \
68 readwrite.c readwrite.h \
69 runas.c runas.h \
70 session-consumed-size.c \
71 session-descriptor.c \
72 session-rotation.c \
b30fa191 73 snapshot.c snapshot.h \
dd392e94 74 spawn-viewer.c spawn-viewer.h \
28b6dfc8
SM
75 time.c \
76 trace-chunk.c trace-chunk.h \
77 trace-chunk-registry.h \
78 trigger.c \
79 unix.c unix.h \
80 uri.c uri.h \
81 userspace-probe.c \
82 utils.c utils.h \
83 uuid.c uuid.h \
cb8d0d24 84 thread.c thread.h \
159b042f 85 tracker.c tracker.h \
75e36e37 86 waiter.c waiter.h
b3f35e02 87
b1b34226 88if HAVE_ELF_H
28b6dfc8
SM
89libcommon_la_SOURCES += \
90 lttng-elf.c lttng-elf.h
b1b34226
MJ
91endif
92
b3f35e02 93libcommon_la_LIBADD = \
28b6dfc8
SM
94 $(top_builddir)/src/common/config/libconfig.la \
95 $(top_builddir)/src/common/compat/libcompat.la \
8bb66c3c 96 $(top_builddir)/src/common/hashtable/libhashtable.la \
e4d2f27a
JR
97 $(top_builddir)/src/common/fd-tracker/libfd-tracker.la \
98 $(top_builddir)/src/common/filter/libfilter.la
b3f35e02 99
87fb9fc0
JR
100if BUILD_LIB_COMPAT
101SUBDIRS += compat
102endif
103
104if BUILD_LIB_HEALTH
105SUBDIRS += health
106endif
107
108if BUILD_LIB_HASHTABLE
109SUBDIRS += hashtable
110endif
111
112if BUILD_LIB_KERNEL_CTL
113SUBDIRS += kernel-ctl
114endif
115
116if BUILD_LIB_SESSIOND_COMM
117SUBDIRS += sessiond-comm
118endif
119
120if BUILD_LIB_RELAYD
aa360a35
JG
121SUBDIRS += relayd
122endif
123
124if BUILD_LIB_FD_TRACKER
125SUBDIRS += fd-tracker
87fb9fc0
JR
126endif
127
128if BUILD_LIB_KERNEL_CONSUMER
129SUBDIRS += kernel-consumer
130endif
131
132if BUILD_LIB_UST_CONSUMER
133SUBDIRS += ust-consumer
134endif
135
136if BUILD_LIB_TESTPOINT
137SUBDIRS += testpoint
138endif
139
140if BUILD_LIB_INDEX
141SUBDIRS += index
142endif
143
144if BUILD_LIB_CONFIG
145SUBDIRS += config
146endif
147
148if BUILD_LIB_CONSUMER
149SUBDIRS += consumer
150endif
10a8a223 151
28b6dfc8
SM
152noinst_HEADERS = \
153 align.h \
154 bug.h \
155 defaults.h \
156 error.h \
157 futex.h \
158 lttng-kernel.h \
159 lttng-kernel-old.h \
160 macros.h \
161 time.h \
162 uri.h \
163 utils.h
1c39da61 164
c49fc5e4
JR
165all-local:
166 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
167 for script in $(EXTRA_DIST); do \
168 cp -f $(srcdir)/$$script $(builddir); \
169 done; \
170 fi
171
172clean-local:
173 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
174 for script in $(EXTRA_DIST); do \
175 rm -f $(builddir)/$$script; \
176 done; \
177 fi
This page took 0.063966 seconds and 4 git commands to generate.