Commit | Line | Data |
---|---|---|
c8fea79c JR |
1 | # Consumer library |
2 | noinst_LTLIBRARIES = libconsumer.la | |
3 | ||
4 | noinst_HEADERS = consumer-metadata-cache.h consumer-timer.h \ | |
5 | consumer-testpoint.h | |
6 | ||
7 | libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \ | |
8 | consumer-timer.c consumer-stream.c consumer-stream.h | |
9 | ||
10 | libconsumer_la_LIBADD = \ | |
11 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
12 | $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \ | |
13 | $(top_builddir)/src/common/hashtable/libhashtable.la \ | |
14 | $(top_builddir)/src/common/compat/libcompat.la \ | |
15 | $(top_builddir)/src/common/relayd/librelayd.la | |
16 | ||
17 | if HAVE_LIBLTTNG_UST_CTL | |
18 | libconsumer_la_LIBADD += \ | |
19 | $(top_builddir)/src/common/ust-consumer/libust-consumer.la | |
20 | endif |