# SPDX-License-Identifier: GPL-2.0-only AUTOMAKE_OPTIONS = subdir-objects SUBDIRS = string-utils # Make sure to always distribute all folders # since SUBDIRS is decided at configure time. DIST_SUBDIRS = \ compat \ health \ hashtable \ kernel-ctl \ sessiond-comm \ relayd \ kernel-consumer \ ust-consumer \ testpoint \ index \ config \ consumer \ string-utils \ fd-tracker # Common library noinst_LTLIBRARIES = libcommon-lgpl.la libcommon-gpl.la EXTRA_DIST = mi-lttng-4.0.xsd # The libcommon-lgpl static archive contains only LGPLv2.1 code. It is # meant to be used by LGPLv2.1 libraries such as liblttng-ctl. It also # contains libcommon-lgpl.la. libcommon_lgpl_la_SOURCES = \ action.c \ buffer-view.h buffer-view.c \ buffer-usage.c \ credentials.h \ condition.c \ defaults.c \ dynamic-array.c dynamic-array.h \ dynamic-buffer.c dynamic-buffer.h \ endpoint.c \ error.c error.h \ evaluation.c \ location.c \ mi-lttng.c mi-lttng.h \ notification.c \ notify.c \ readwrite.c readwrite.h \ runas.c runas.h \ session-consumed-size.c \ session-descriptor.c \ session-rotation.c \ spawn-viewer.c spawn-viewer.h \ time.c \ tracker.c tracker.h \ trigger.c \ unix.c unix.h \ uri.c uri.h \ userspace-probe.c \ utils.c utils.h if HAVE_ELF_H libcommon_lgpl_la_SOURCES += \ lttng-elf.c lttng-elf.h endif libcommon_lgpl_la_LIBADD = \ $(top_builddir)/src/common/config/libconfig.la \ $(top_builddir)/src/common/hashtable/libhashtable-lgpl.la # The libcommon-gpl static archive contains GPLv2 compatible code. It is # meant to be used by GPL executables. libcommon_gpl_la_SOURCES = \ common.h \ context.c context.h \ daemonize.c daemonize.h \ event.c \ filter.c filter.h \ fs-handle.c fs-handle.h fs-handle-internal.h \ futex.c futex.h \ optional.h \ pipe.c pipe.h \ trace-chunk.c trace-chunk.h \ trace-chunk-registry.h \ uuid.c uuid.h \ waiter.c waiter.h libcommon_gpl_la_LIBADD = \ -lurcu -lurcu-common \ libcommon-lgpl.la \ $(top_builddir)/src/common/hashtable/libhashtable-gpl.la \ $(top_builddir)/src/common/fd-tracker/libfd-tracker.la if BUILD_LIB_COMPAT SUBDIRS += compat libcommon_lgpl_la_LIBADD += \ $(top_builddir)/src/common/compat/libcompat.la endif if BUILD_LIB_HEALTH SUBDIRS += health endif if BUILD_LIB_HASHTABLE SUBDIRS += hashtable endif if BUILD_LIB_KERNEL_CTL SUBDIRS += kernel-ctl endif if BUILD_LIB_SESSIOND_COMM SUBDIRS += sessiond-comm endif if BUILD_LIB_RELAYD SUBDIRS += relayd endif if BUILD_LIB_FD_TRACKER SUBDIRS += fd-tracker endif if BUILD_LIB_KERNEL_CONSUMER SUBDIRS += kernel-consumer endif if BUILD_LIB_UST_CONSUMER SUBDIRS += ust-consumer endif if BUILD_LIB_TESTPOINT SUBDIRS += testpoint endif if BUILD_LIB_INDEX SUBDIRS += index endif if BUILD_LIB_CONFIG SUBDIRS += config endif if BUILD_LIB_CONSUMER SUBDIRS += consumer endif noinst_HEADERS = \ align.h \ bug.h \ defaults.h \ error.h \ futex.h \ lttng-kernel.h \ lttng-kernel-old.h \ macros.h \ time.h \ uri.h \ utils.h all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(EXTRA_DIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(EXTRA_DIST); do \ rm -f $(builddir)/$$script; \ done; \ fi