X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2FMakefile.am;h=5303f26431f3c9e1db9791d314cafc7ffeafbb10;hp=437bcd812f864972070e3d4b03df41fa672c7678;hb=931bdbaa3a3fd1d586a0045c15cac23d6cfc67f9;hpb=28b6dfc89dd3f10d3ba513261c5711bb72be430b diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 437bcd812..5303f2643 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + AUTOMAKE_OPTIONS = subdir-objects SUBDIRS = string-utils @@ -22,10 +24,13 @@ DIST_SUBDIRS = \ # Common library noinst_LTLIBRARIES = libcommon.la -EXTRA_DIST = mi-lttng-3.0.xsd +EXTRA_DIST = mi-lttng-4.0.xsd libcommon_la_SOURCES = \ - action.c \ + actions/action.c \ + actions/notify.c \ + actions/start-session.c \ + actions/stop-session.c \ buffer-usage.c \ buffer-view.h buffer-view.c \ common.h \ @@ -41,11 +46,11 @@ libcommon_la_SOURCES = \ evaluation.c \ event.c \ filter.c filter.h \ + fs-handle.c fs-handle.h fs-handle-internal.h \ futex.c futex.h \ location.c \ mi-lttng.c mi-lttng.h \ notification.c \ - notify.c \ optional.h \ pipe.c pipe.h \ readwrite.c readwrite.h \ @@ -53,6 +58,7 @@ libcommon_la_SOURCES = \ session-consumed-size.c \ session-descriptor.c \ session-rotation.c \ + spawn-viewer.c spawn-viewer.h \ time.c \ trace-chunk.c trace-chunk.h \ trace-chunk-registry.h \ @@ -62,6 +68,7 @@ libcommon_la_SOURCES = \ userspace-probe.c \ utils.c utils.h \ uuid.c uuid.h \ + tracker.c tracker.h \ waiter.c waiter.h if HAVE_ELF_H @@ -72,7 +79,8 @@ endif libcommon_la_LIBADD = \ $(top_builddir)/src/common/config/libconfig.la \ $(top_builddir)/src/common/compat/libcompat.la \ - $(top_builddir)/src/common/hashtable/libhashtable.la + $(top_builddir)/src/common/hashtable/libhashtable.la \ + $(top_builddir)/src/common/fd-tracker/libfd-tracker.la if BUILD_LIB_COMPAT SUBDIRS += compat @@ -95,7 +103,11 @@ SUBDIRS += sessiond-comm endif if BUILD_LIB_RELAYD -SUBDIRS += relayd fd-tracker +SUBDIRS += relayd +endif + +if BUILD_LIB_FD_TRACKER +SUBDIRS += fd-tracker endif if BUILD_LIB_KERNEL_CONSUMER