X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2FMakefile.am;h=1f35535eea23dc64b535464d84a410c974946948;hb=04aa13f8c2944839f6514e3841b93057b443a783;hp=abb7a8dc4154166f85ffb4c40e2c5239b89cbe49;hpb=fca2f1916cd9f22f410d8f22b9a0720c978c2025;p=lttng-ust.git diff --git a/liblttng-ust/Makefile.am b/liblttng-ust/Makefile.am index abb7a8dc..1f35535e 100644 --- a/liblttng-ust/Makefile.am +++ b/liblttng-ust/Makefile.am @@ -1,5 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -AM_CFLAGS += -fno-strict-aliasing +AM_CFLAGS += -I$(srcdir) -fno-strict-aliasing noinst_LTLIBRARIES = liblttng-ust-runtime.la liblttng-ust-support.la @@ -14,8 +13,7 @@ liblttng_ust_tracepoint_la_SOURCES = \ error.h liblttng_ust_tracepoint_la_LIBADD = \ - -lurcu-bp \ - -lpthread \ + $(URCU_BP_LIBS) \ $(top_builddir)/snprintf/libustsnprintf.la \ $(DL_LIBS) @@ -23,9 +21,15 @@ liblttng_ust_tracepoint_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIB liblttng_ust_tracepoint_la_CFLAGS = -DUST_COMPONENT="liblttng_ust_tracepoint" $(AM_CFLAGS) liblttng_ust_runtime_la_SOURCES = \ + bytecode.h \ lttng-ust-comm.c \ lttng-ust-abi.c \ lttng-probes.c \ + lttng-bytecode.c \ + lttng-bytecode.h \ + lttng-bytecode-validator.c \ + lttng-bytecode-specialize.c \ + lttng-bytecode-interpreter.c \ lttng-context-provider.c \ lttng-context-vtid.c \ lttng-context-vpid.c \ @@ -38,6 +42,7 @@ liblttng_ust_runtime_la_SOURCES = \ lttng-context-mnt-ns.c \ lttng-context-net-ns.c \ lttng-context-pid-ns.c \ + lttng-context-time-ns.c \ lttng-context-user-ns.c \ lttng-context-uts-ns.c \ lttng-context-vuid.c \ @@ -48,12 +53,6 @@ liblttng_ust_runtime_la_SOURCES = \ lttng-context-vsgid.c \ lttng-context.c \ lttng-events.c \ - lttng-filter.c \ - lttng-filter.h \ - lttng-filter-validator.c \ - lttng-filter-specialize.c \ - lttng-filter-interpreter.c \ - filter-bytecode.h \ lttng-hash-helper.h \ lttng-ust-elf.c \ lttng-ust-statedump.c \ @@ -61,7 +60,9 @@ liblttng_ust_runtime_la_SOURCES = \ lttng-ust-statedump-provider.h \ ust_lib.c \ ust_lib.h \ + context-provider-internal.h \ tracepoint-internal.h \ + ust-events-internal.h \ clock.h \ compat.h \ wait.h \ @@ -75,6 +76,7 @@ liblttng_ust_runtime_la_SOURCES = \ getenv.h \ string-utils.c \ string-utils.h \ + event-notifier-notification.c \ ns.h \ creds.h @@ -109,9 +111,8 @@ liblttng_ust_support_la_LIBADD = \ $(top_builddir)/libringbuffer/libringbuffer.la liblttng_ust_la_LIBADD = \ - -lpthread \ -lrt \ - -lurcu-cds \ + $(URCU_CDS_LIBS) \ $(top_builddir)/snprintf/libustsnprintf.la \ $(top_builddir)/liblttng-ust-comm/liblttng-ust-comm.la \ liblttng-ust-tracepoint.la \