X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2FMakefile.am;h=e450f8c858876fd617b6344ab122626d7c75e821;hb=36c52fffa1beb46c7c15bb6ac4a4179cae373b98;hp=2fbc8fffacf2db9242493bec043134613e08e9ff;hpb=e4db8f987126e1c1e586e5ae1e1ba73d0ab43438;p=lttng-ust.git diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 2fbc8fff..e450f8c8 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -10,16 +10,22 @@ noinst_HEADERS = \ align.h \ bitfield.h \ bitmap.h \ + clock.h \ dynamic-type.h \ elf.h \ + events.h \ logging.h \ macros.h \ patient.h \ + procname.h \ safe-snprintf.h \ - ustcomm.h + wait.h noinst_HEADERS += \ compat/dlfcn.h \ + compat/errno.h \ + compat/mmap.h \ + compat/pthread.h \ compat/tid.h # These headers should be moved to the public headers when tested and @@ -39,10 +45,11 @@ noinst_HEADERS += \ noinst_LTLIBRARIES = \ libcounter.la \ - msgpack/libmsgpack.la \ + libmsgpack.la \ libringbuffer.la \ - snprintf/libsnprintf.la \ - libcommon.la + libsnprintf.la \ + libcommon.la \ + libustcomm.la # counter libcounter_la_SOURCES = \ @@ -68,11 +75,11 @@ endif libcounter_la_CFLAGS = -DUST_COMPONENT="libcounter" $(AM_CFLAGS) # msgpack -msgpack_libmsgpack_la_SOURCES = \ +libmsgpack_la_SOURCES = \ msgpack/msgpack.c \ msgpack/msgpack.h -msgpack_libmsgpack_la_CFLAGS = -DUST_COMPONENT="libmsgpack" $(AM_CFLAGS) +libmsgpack_la_CFLAGS = -DUST_COMPONENT="libmsgpack" $(AM_CFLAGS) # ringbuffer libringbuffer_la_SOURCES = \ @@ -84,8 +91,6 @@ libringbuffer_la_SOURCES = \ ringbuffer/frontend.h \ ringbuffer/frontend_internal.h \ ringbuffer/frontend_types.h \ - ringbuffer/getcpu.h \ - ringbuffer/mmap.h \ ringbuffer/nohz.h \ ringbuffer/rb-init.h \ ringbuffer/ring_buffer_backend.c \ @@ -109,7 +114,7 @@ endif libringbuffer_la_CFLAGS = -DUST_COMPONENT="libringbuffer" $(AM_CFLAGS) # snprintf -snprintf_libsnprintf_la_SOURCES = \ +libsnprintf_la_SOURCES = \ snprintf/fflush.c \ snprintf/fileext.h \ snprintf/floatio.h \ @@ -125,12 +130,18 @@ snprintf_libsnprintf_la_SOURCES = \ # Common library libcommon_la_SOURCES = \ + getenv.c \ + getenv.h \ logging.c \ logging.h \ patient.c libcommon_la_LIBADD = \ - msgpack/libmsgpack.la \ - snprintf/libsnprintf.la + libmsgpack.la \ + libsnprintf.la + +libustcomm_la_SOURCES = \ + ustcomm.c \ + ustcomm.h EXTRA_DIST = snprintf/README