Fix: increment UST channel refcount at stream creation
[lttng-tools.git] / src / common / Makefile.am
... / ...
CommitLineData
1AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
3SUBDIRS = compat hashtable kernel-ctl sessiond-comm relayd \
4 kernel-consumer ust-consumer testpoint
5
6AM_CFLAGS = -fno-strict-aliasing
7
8noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \
9 uri.h utils.h lttng-kernel-old.h \
10 consumer-metadata-cache.h consumer-timer.h
11
12# Common library
13noinst_LTLIBRARIES = libcommon.la
14
15libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \
16 common.h futex.c futex.h uri.c uri.h defaults.c
17libcommon_la_LIBADD = -luuid
18
19# Consumer library
20noinst_LTLIBRARIES += libconsumer.la
21
22libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \
23 consumer-timer.c
24
25libconsumer_la_LIBADD = \
26 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
27 $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \
28 $(top_builddir)/src/common/hashtable/libhashtable.la \
29 $(top_builddir)/src/common/compat/libcompat.la \
30 $(top_builddir)/src/common/relayd/librelayd.la
31
32if HAVE_LIBLTTNG_UST_CTL
33libconsumer_la_LIBADD += \
34 $(top_builddir)/src/common/ust-consumer/libust-consumer.la
35endif
This page took 0.022955 seconds and 4 git commands to generate.