Commit | Line | Data |
---|---|---|
ab5be9fa MJ |
1 | # SPDX-License-Identifier: GPL-2.0-only |
2 | ||
26821431 MD |
3 | AUTOMAKE_OPTIONS = subdir-objects |
4 | ||
9c55c241 | 5 | SUBDIRS = string-utils |
87fb9fc0 JR |
6 | |
7 | # Make sure to always distribute all folders | |
8 | # since SUBDIRS is decided at configure time. | |
28b6dfc8 SM |
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 | ||
b3f35e02 FD |
25 | # Common library |
26 | noinst_LTLIBRARIES = libcommon.la | |
01fac814 | 27 | EXTRA_DIST = mi-lttng-4.0.xsd |
b3f35e02 | 28 | |
28b6dfc8 SM |
29 | libcommon_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 \ | |
6457f8e4 | 58 | spawn-viewer.c spawn-viewer.h \ |
28b6dfc8 SM |
59 | time.c \ |
60 | trace-chunk.c trace-chunk.h \ | |
61 | trace-chunk-registry.h \ | |
62 | trigger.c \ | |
63 | unix.c unix.h \ | |
64 | uri.c uri.h \ | |
65 | userspace-probe.c \ | |
66 | utils.c utils.h \ | |
67 | uuid.c uuid.h \ | |
f953b297 | 68 | tracker.c tracker.h \ |
f5ea0241 JG |
69 | waiter.c waiter.h \ |
70 | fs-handle.h fs-handle-internal.h fs-handle.c | |
b3f35e02 | 71 | |
b1b34226 | 72 | if HAVE_ELF_H |
28b6dfc8 SM |
73 | libcommon_la_SOURCES += \ |
74 | lttng-elf.c lttng-elf.h | |
b1b34226 MJ |
75 | endif |
76 | ||
b3f35e02 | 77 | libcommon_la_LIBADD = \ |
28b6dfc8 SM |
78 | $(top_builddir)/src/common/config/libconfig.la \ |
79 | $(top_builddir)/src/common/compat/libcompat.la \ | |
8bb66c3c JG |
80 | $(top_builddir)/src/common/hashtable/libhashtable.la \ |
81 | $(top_builddir)/src/common/fd-tracker/libfd-tracker.la | |
b3f35e02 | 82 | |
87fb9fc0 JR |
83 | if BUILD_LIB_COMPAT |
84 | SUBDIRS += compat | |
85 | endif | |
86 | ||
87 | if BUILD_LIB_HEALTH | |
88 | SUBDIRS += health | |
89 | endif | |
90 | ||
91 | if BUILD_LIB_HASHTABLE | |
92 | SUBDIRS += hashtable | |
93 | endif | |
94 | ||
95 | if BUILD_LIB_KERNEL_CTL | |
96 | SUBDIRS += kernel-ctl | |
97 | endif | |
98 | ||
99 | if BUILD_LIB_SESSIOND_COMM | |
100 | SUBDIRS += sessiond-comm | |
101 | endif | |
102 | ||
103 | if BUILD_LIB_RELAYD | |
aa360a35 JG |
104 | SUBDIRS += relayd |
105 | endif | |
106 | ||
107 | if BUILD_LIB_FD_TRACKER | |
108 | SUBDIRS += fd-tracker | |
87fb9fc0 JR |
109 | endif |
110 | ||
111 | if BUILD_LIB_KERNEL_CONSUMER | |
112 | SUBDIRS += kernel-consumer | |
113 | endif | |
114 | ||
115 | if BUILD_LIB_UST_CONSUMER | |
116 | SUBDIRS += ust-consumer | |
117 | endif | |
118 | ||
119 | if BUILD_LIB_TESTPOINT | |
120 | SUBDIRS += testpoint | |
121 | endif | |
122 | ||
123 | if BUILD_LIB_INDEX | |
124 | SUBDIRS += index | |
125 | endif | |
126 | ||
127 | if BUILD_LIB_CONFIG | |
128 | SUBDIRS += config | |
129 | endif | |
130 | ||
131 | if BUILD_LIB_CONSUMER | |
132 | SUBDIRS += consumer | |
133 | endif | |
10a8a223 | 134 | |
28b6dfc8 SM |
135 | noinst_HEADERS = \ |
136 | align.h \ | |
137 | bug.h \ | |
138 | defaults.h \ | |
139 | error.h \ | |
140 | futex.h \ | |
141 | lttng-kernel.h \ | |
142 | lttng-kernel-old.h \ | |
143 | macros.h \ | |
144 | time.h \ | |
145 | uri.h \ | |
146 | utils.h | |
1c39da61 | 147 | |
c49fc5e4 JR |
148 | all-local: |
149 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
150 | for script in $(EXTRA_DIST); do \ | |
151 | cp -f $(srcdir)/$$script $(builddir); \ | |
152 | done; \ | |
153 | fi | |
154 | ||
155 | clean-local: | |
156 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
157 | for script in $(EXTRA_DIST); do \ | |
158 | rm -f $(builddir)/$$script; \ | |
159 | done; \ | |
160 | fi |