Introduce libcommon-lgpl for liblttng-ctl
[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 argpar \
7 bytecode \
8 compat \
9 config \
10 fd-tracker \
11 string-utils \
12 filter \
13 hashtable \
14 argpar-utils
15
16 # Make sure to always distribute all folders
17 # since SUBDIRS is decided at configure time.
18 DIST_SUBDIRS = \
19 compat \
20 health \
21 hashtable \
22 kernel-ctl \
23 sessiond-comm \
24 relayd \
25 kernel-consumer \
26 ust-consumer \
27 testpoint \
28 index \
29 config \
30 consumer \
31 string-utils \
32 fd-tracker \
33 bytecode \
34 filter \
35 argpar \
36 argpar-utils
37
38 # Common library
39 noinst_LTLIBRARIES = libcommon-lgpl.la libcommon-gpl.la
40 EXTRA_DIST = mi-lttng-4.1.xsd
41
42 # The libcommon-lgpl static archive contains only LGPLv2.1 code. It is
43 # meant to be used by LGPLv2.1 libraries such as liblttng-ctl. It also
44 # contains libcommon-lgpl.la.
45
46 libcommon_lgpl_la_SOURCES = \
47 actions/action.c \
48 actions/list.c \
49 actions/notify.c \
50 actions/path.c \
51 actions/rotate-session.c \
52 actions/snapshot-session.c \
53 actions/start-session.c \
54 actions/stop-session.c \
55 actions/rate-policy.c \
56 buffer-view.h buffer-view.c \
57 conditions/buffer-usage.c \
58 conditions/condition.c \
59 conditions/event-rule-matches.c \
60 conditions/session-consumed-size.c \
61 conditions/session-rotation.c \
62 credentials.c credentials.h \
63 defaults.c \
64 domain.c \
65 dynamic-array.c dynamic-array.h \
66 dynamic-buffer.c dynamic-buffer.h \
67 endpoint.c \
68 error.c error.h \
69 error-query.c \
70 evaluation.c \
71 event-expr/event-expr.c \
72 event-field-value.c \
73 event-rule/event-rule.c \
74 event-rule/kernel-kprobe.c \
75 event-rule/kernel-syscall.c \
76 event-rule/kernel-uprobe.c \
77 event-rule/kernel-tracepoint.c \
78 event-rule/user-tracepoint.c \
79 event-rule/log4j-logging.c \
80 event-rule/jul-logging.c \
81 event-rule/python-logging.c \
82 fd-handle.c fd-handle.h \
83 kernel-probe.c \
84 location.c \
85 log-level-rule.c \
86 mi-lttng.c mi-lttng.h \
87 notification.c \
88 payload.c payload.h \
89 payload-view.c payload-view.h \
90 readwrite.c readwrite.h \
91 runas.c runas.h \
92 session-descriptor.c \
93 snapshot.c snapshot.h \
94 spawn-viewer.c spawn-viewer.h \
95 thread.c thread.h \
96 time.c \
97 tracker.c tracker.h \
98 trigger.c \
99 unix.c unix.h \
100 uri.c uri.h \
101 userspace-probe.c \
102 utils.c utils.h
103
104 if HAVE_ELF_H
105 libcommon_lgpl_la_SOURCES += \
106 lttng-elf.c lttng-elf.h
107 endif
108
109 libcommon_lgpl_la_LIBADD = \
110 $(top_builddir)/src/common/bytecode/libbytecode.la \
111 $(top_builddir)/src/common/compat/libcompat.la \
112 $(top_builddir)/src/common/config/libconfig.la \
113 $(top_builddir)/src/common/filter/libfilter.la \
114 $(top_builddir)/src/common/hashtable/libhashtable-lgpl.la \
115 $(top_builddir)/src/vendor/msgpack/libmsgpack.la
116
117 # The libcommon-gpl static archive contains GPLv2 compatible code. It is
118 # meant to be used by GPL executables.
119
120 libcommon_gpl_la_SOURCES = \
121 common.h \
122 context.c context.h \
123 daemonize.c daemonize.h \
124 event.c \
125 filter.c filter.h \
126 fs-handle.c fs-handle.h fs-handle-internal.h \
127 futex.c futex.h \
128 index-allocator.c index-allocator.h \
129 optional.h \
130 pipe.c pipe.h \
131 shm.c shm.h \
132 trace-chunk.c trace-chunk.h \
133 trace-chunk-registry.h \
134 uuid.c uuid.h \
135 waiter.c waiter.h
136
137 libcommon_gpl_la_LIBADD = \
138 libcommon-lgpl.la \
139 $(top_builddir)/src/common/hashtable/libhashtable-gpl.la \
140 $(top_builddir)/src/common/fd-tracker/libfd-tracker.la
141
142 if BUILD_LIB_HEALTH
143 SUBDIRS += health
144 endif
145
146 if BUILD_LIB_KERNEL_CTL
147 SUBDIRS += kernel-ctl
148 endif
149
150 if BUILD_LIB_SESSIOND_COMM
151 SUBDIRS += sessiond-comm
152 endif
153
154 if BUILD_LIB_RELAYD
155 SUBDIRS += relayd
156 endif
157
158
159 if BUILD_LIB_KERNEL_CONSUMER
160 SUBDIRS += kernel-consumer
161 endif
162
163 if BUILD_LIB_UST_CONSUMER
164 SUBDIRS += ust-consumer
165 endif
166
167 if BUILD_LIB_TESTPOINT
168 SUBDIRS += testpoint
169 endif
170
171 if BUILD_LIB_INDEX
172 SUBDIRS += index
173 endif
174
175 if BUILD_LIB_CONSUMER
176 SUBDIRS += consumer
177 endif
178
179 noinst_HEADERS = \
180 align.h \
181 bug.h \
182 defaults.h \
183 error.h \
184 futex.h \
185 lttng-kernel.h \
186 lttng-kernel-old.h \
187 macros.h \
188 time.h \
189 uri.h \
190 utils.h
191
192 noinst_PROGRAMS = filter-grammar-test
193 filter_grammar_test_SOURCES = filter-grammar-test.c
194 filter_grammar_test_LDADD = libcommon-gpl.la
195
196 all-local:
197 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
198 for script in $(EXTRA_DIST); do \
199 cp -f $(srcdir)/$$script $(builddir); \
200 done; \
201 fi
202
203 clean-local:
204 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
205 for script in $(EXTRA_DIST); do \
206 rm -f $(builddir)/$$script; \
207 done; \
208 fi
This page took 0.04148 seconds and 4 git commands to generate.