Commit | Line | Data |
---|---|---|
10a8a223 DG |
1 | AM_CPPFLAGS = |
2 | ||
00e2e675 | 3 | SUBDIRS = compat hashtable kernel-ctl sessiond-comm relayd kernel-consumer ust-consumer |
10a8a223 DG |
4 | |
5 | AM_CFLAGS = -fno-strict-aliasing | |
6 | ||
3a5713da | 7 | noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h uri.h |
1c39da61 | 8 | |
00e2e675 | 9 | # Common library |
10a8a223 DG |
10 | noinst_LTLIBRARIES = libcommon.la |
11 | ||
3a5713da | 12 | libcommon_la_SOURCES = runas.c runas.h common.h futex.c futex.h uri.c uri.h |
10a8a223 DG |
13 | |
14 | # Consumer library | |
15 | noinst_LTLIBRARIES += libconsumer.la | |
16 | ||
1c39da61 | 17 | libconsumer_la_SOURCES = consumer.c consumer.h |
10a8a223 DG |
18 | |
19 | libconsumer_la_LIBADD = \ | |
20 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
21 | $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \ | |
b9182dd9 | 22 | $(top_builddir)/src/common/hashtable/libhashtable.la \ |
00e2e675 DG |
23 | $(top_builddir)/src/common/compat/libcompat.la \ |
24 | $(top_builddir)/src/common/relayd/librelayd.la | |
10a8a223 DG |
25 | |
26 | if HAVE_LIBLTTNG_UST_CTL | |
27 | libconsumer_la_LIBADD += \ | |
28 | $(top_builddir)/src/common/ust-consumer/libust-consumer.la | |
29 | endif |