X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2FMakefile.am;h=ad889d165d784582d93aff771ae5a9ed2fdd7bbc;hb=refs%2Fheads%2Fmaster;hp=f4c134a704685a0358eec114834c91d4878ec090;hpb=08ba2503b86d1506117c077c99eb1c38973a48f3;p=lttng-ust.git diff --git a/src/common/Makefile.am b/src/common/Makefile.am index f4c134a7..ad889d16 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2023 EfficiOS, Inc +# # SPDX-License-Identifier: LGPL-2.1-only AUTOMAKE_OPTIONS = subdir-objects @@ -14,6 +16,7 @@ noinst_HEADERS = \ creds.h \ err-ptr.h \ events.h \ + getcpu.h \ hash.h \ jhash.h \ logging.h \ @@ -23,6 +26,7 @@ noinst_HEADERS = \ procname.h \ safe-snprintf.h \ tracepoint.h \ + tracer.h \ wait.h noinst_HEADERS += \ @@ -49,8 +53,10 @@ noinst_HEADERS += \ noinst_LTLIBRARIES = \ libcounter.la \ + libcounter-clients.la \ libmsgpack.la \ libringbuffer.la \ + libringbuffer-clients.la \ libsnprintf.la \ libcommon.la \ libustcomm.la @@ -76,6 +82,15 @@ endif libcounter_la_CFLAGS = -DUST_COMPONENT="libcounter" $(AM_CFLAGS) +# counter-clients +libcounter_clients_la_SOURCES = \ + counter-clients/clients.c \ + counter-clients/clients.h \ + counter-clients/percpu-32-modular.c \ + counter-clients/percpu-64-modular.c + +libcounter_clients_la_CFLAGS = -DUST_COMPONENT="libcounter-clients" $(AM_CFLAGS) + # msgpack libmsgpack_la_SOURCES = \ msgpack/msgpack.c \ @@ -113,6 +128,20 @@ endif libringbuffer_la_CFLAGS = -DUST_COMPONENT="libringbuffer" $(AM_CFLAGS) +# ringbuffer-client +libringbuffer_clients_la_SOURCES = \ + ringbuffer-clients/clients.c \ + ringbuffer-clients/clients.h \ + ringbuffer-clients/discard.c \ + ringbuffer-clients/discard-rt.c \ + ringbuffer-clients/metadata.c \ + ringbuffer-clients/metadata-template.h \ + ringbuffer-clients/overwrite.c \ + ringbuffer-clients/overwrite-rt.c \ + ringbuffer-clients/template.h + +libringbuffer_clients_la_CFLAGS = -DUST_COMPONENT="libringbuffer-clients" $(AM_CFLAGS) + # snprintf libsnprintf_la_SOURCES = \ snprintf/fflush.c \ @@ -130,6 +159,7 @@ libsnprintf_la_SOURCES = \ # Common library libcommon_la_SOURCES = \ + core.c \ dynamic-type.c \ dynamic-type.h \ elf.c \ @@ -141,6 +171,8 @@ libcommon_la_SOURCES = \ logging.h \ smp.c \ smp.h \ + populate.c \ + populate.h \ strutils.c \ strutils.h \ utils.c \ @@ -155,4 +187,4 @@ libustcomm_la_SOURCES = \ ustcomm.c \ ustcomm.h -EXTRA_DIST = snprintf/README +EXTRA_DIST = snprintf/README.md