Move libconsumer under common/consumer/
[lttng-tools.git] / src / common / consumer / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
3 # Consumer library
4 noinst_LTLIBRARIES = libconsumer.la
5
6 noinst_HEADERS = consumer-metadata-cache.h consumer-timer.h \
7 consumer-testpoint.h
8
9 libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \
10 consumer-timer.c consumer-stream.c consumer-stream.h
11
12 libconsumer_la_LIBADD = \
13 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
14 $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \
15 $(top_builddir)/src/common/hashtable/libhashtable.la \
16 $(top_builddir)/src/common/compat/libcompat.la \
17 $(top_builddir)/src/common/relayd/librelayd.la
18
19 if HAVE_LIBLTTNG_UST_CTL
20 libconsumer_la_LIBADD += \
21 $(top_builddir)/src/common/ust-consumer/libust-consumer.la
22 endif
This page took 0.030225 seconds and 5 git commands to generate.