Fix: libc internal mutex races with run_as
[lttng-tools.git] / src / common / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
3 SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \
4 kernel-consumer ust-consumer testpoint index config
5
6 AM_CFLAGS = -fno-strict-aliasing
7
8 noinst_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 consumer-testpoint.h align.h bitfield.h bug.h
12
13 # Common library
14 noinst_LTLIBRARIES = libcommon.la
15 EXTRA_DIST = mi_lttng.xsd
16
17 libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \
18 common.h futex.c futex.h uri.c uri.h defaults.c \
19 pipe.c pipe.h readwrite.c readwrite.h \
20 mi-lttng.h mi-lttng.c \
21 daemonize.c daemonize.h \
22 sessiond-comm/unix.c sessiond-comm/unix.h
23
24 libcommon_la_LIBADD = \
25 -luuid \
26 -lrt \
27 $(top_builddir)/src/common/config/libconfig.la
28
29 # Consumer library
30 noinst_LTLIBRARIES += libconsumer.la
31
32 libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \
33 consumer-timer.c consumer-stream.c consumer-stream.h
34
35 libconsumer_la_LIBADD = \
36 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
37 $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \
38 $(top_builddir)/src/common/hashtable/libhashtable.la \
39 $(top_builddir)/src/common/compat/libcompat.la \
40 $(top_builddir)/src/common/relayd/librelayd.la
41
42 if HAVE_LIBLTTNG_UST_CTL
43 libconsumer_la_LIBADD += \
44 $(top_builddir)/src/common/ust-consumer/libust-consumer.la
45 endif
46
47 all-local:
48 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
49 for script in $(EXTRA_DIST); do \
50 cp -f $(srcdir)/$$script $(builddir); \
51 done; \
52 fi
53
54 clean-local:
55 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
56 for script in $(EXTRA_DIST); do \
57 rm -f $(builddir)/$$script; \
58 done; \
59 fi
This page took 0.032395 seconds and 4 git commands to generate.