X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fconsumer%2FMakefile.am;fp=src%2Fcommon%2Fconsumer%2FMakefile.am;h=029fb1d68354d09b0f966e96a22cd8085bdf3918;hb=c8fea79c745d42ea8143b7020ae11b4fc2da0d8a;hp=0000000000000000000000000000000000000000;hpb=ea26306076d26c40ed31e4f9170dc2852bda502f;p=lttng-tools.git diff --git a/src/common/consumer/Makefile.am b/src/common/consumer/Makefile.am new file mode 100644 index 000000000..029fb1d68 --- /dev/null +++ b/src/common/consumer/Makefile.am @@ -0,0 +1,22 @@ +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src + +# Consumer library +noinst_LTLIBRARIES = libconsumer.la + +noinst_HEADERS = consumer-metadata-cache.h consumer-timer.h \ + consumer-testpoint.h + +libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \ + consumer-timer.c consumer-stream.c consumer-stream.h + +libconsumer_la_LIBADD = \ + $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ + $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \ + $(top_builddir)/src/common/hashtable/libhashtable.la \ + $(top_builddir)/src/common/compat/libcompat.la \ + $(top_builddir)/src/common/relayd/librelayd.la + +if HAVE_LIBLTTNG_UST_CTL +libconsumer_la_LIBADD += \ + $(top_builddir)/src/common/ust-consumer/libust-consumer.la +endif