X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fcommon%2FMakefile.am;h=ed798b3be51751ca9e1b1fa2edf775029459e982;hb=5fb2fe0679458e65ebdd52b69d6359c082664ce6;hp=b5f8473bc97a452b0aa113d9e19d3cb49da81b58;hpb=f78f3df1b255162d62a68f31aba34b86528a029f;p=lttng-ust.git diff --git a/src/common/Makefile.am b/src/common/Makefile.am index b5f8473b..ed798b3b 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -14,6 +14,7 @@ noinst_HEADERS = \ creds.h \ err-ptr.h \ events.h \ + getcpu.h \ hash.h \ jhash.h \ logging.h \ @@ -23,6 +24,7 @@ noinst_HEADERS = \ procname.h \ safe-snprintf.h \ tracepoint.h \ + tracer.h \ wait.h noinst_HEADERS += \ @@ -49,9 +51,10 @@ noinst_HEADERS += \ noinst_LTLIBRARIES = \ libcounter.la \ - libcompat.la \ + libcounter-clients.la \ libmsgpack.la \ libringbuffer.la \ + libringbuffer-clients.la \ libsnprintf.la \ libcommon.la \ libustcomm.la @@ -77,10 +80,14 @@ endif libcounter_la_CFLAGS = -DUST_COMPONENT="libcounter" $(AM_CFLAGS) -# compat -libcompat_la_SOURCES = \ - compat/futex.c \ - compat/futex.h +# 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 = \ @@ -119,6 +126,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 \ @@ -136,6 +157,7 @@ libsnprintf_la_SOURCES = \ # Common library libcommon_la_SOURCES = \ + core.c \ dynamic-type.c \ dynamic-type.h \ elf.c \ @@ -154,7 +176,6 @@ libcommon_la_SOURCES = \ patient.c libcommon_la_LIBADD = \ - libcompat.la \ libmsgpack.la \ libsnprintf.la