Commit | Line | Data |
---|---|---|
74130cb7 | 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src |
10a8a223 | 2 | |
55d09795 | 3 | SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \ |
bac6245e | 4 | kernel-consumer ust-consumer testpoint index config |
10a8a223 DG |
5 | |
6 | AM_CFLAGS = -fno-strict-aliasing | |
7 | ||
0b5fb049 | 8 | noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \ |
331744e3 | 9 | uri.h utils.h lttng-kernel-old.h \ |
2d57de81 MD |
10 | consumer-metadata-cache.h consumer-timer.h \ |
11 | consumer-testpoint.h | |
1c39da61 | 12 | |
00e2e675 | 13 | # Common library |
10a8a223 | 14 | noinst_LTLIBRARIES = libcommon.la |
2f99314e | 15 | EXTRA_DIST = mi_lttng.xsd |
10a8a223 | 16 | |
6242251b | 17 | libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \ |
9fd92637 | 18 | common.h futex.c futex.h uri.c uri.h defaults.c \ |
99ed9c43 | 19 | pipe.c pipe.h readwrite.c readwrite.h \ |
c7e35b03 | 20 | mi-lttng.h mi-lttng.c \ |
99ed9c43 | 21 | daemonize.c daemonize.h |
c7e35b03 JR |
22 | libcommon_la_LIBADD = \ |
23 | -luuid \ | |
24 | -lrt \ | |
25 | $(top_builddir)/src/common/config/libconfig.la | |
10a8a223 DG |
26 | |
27 | # Consumer library | |
28 | noinst_LTLIBRARIES += libconsumer.la | |
29 | ||
331744e3 | 30 | libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \ |
51230d70 | 31 | consumer-timer.c consumer-stream.c consumer-stream.h |
10a8a223 DG |
32 | |
33 | libconsumer_la_LIBADD = \ | |
34 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
35 | $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \ | |
b9182dd9 | 36 | $(top_builddir)/src/common/hashtable/libhashtable.la \ |
00e2e675 DG |
37 | $(top_builddir)/src/common/compat/libcompat.la \ |
38 | $(top_builddir)/src/common/relayd/librelayd.la | |
10a8a223 DG |
39 | |
40 | if HAVE_LIBLTTNG_UST_CTL | |
41 | libconsumer_la_LIBADD += \ | |
42 | $(top_builddir)/src/common/ust-consumer/libust-consumer.la | |
43 | endif |