Commit | Line | Data |
---|---|---|
10a8a223 DG |
1 | AM_CPPFLAGS = |
2 | ||
d31efcff | 3 | SUBDIRS = compat hashtable kernel-ctl sessiond-comm 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 | |
10a8a223 DG |
9 | noinst_LTLIBRARIES = libcommon.la |
10 | ||
3a5713da | 11 | libcommon_la_SOURCES = runas.c runas.h common.h futex.c futex.h uri.c uri.h |
10a8a223 DG |
12 | |
13 | # Consumer library | |
14 | noinst_LTLIBRARIES += libconsumer.la | |
15 | ||
1c39da61 | 16 | libconsumer_la_SOURCES = consumer.c consumer.h |
10a8a223 DG |
17 | |
18 | libconsumer_la_LIBADD = \ | |
19 | $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ | |
20 | $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \ | |
b9182dd9 | 21 | $(top_builddir)/src/common/hashtable/libhashtable.la \ |
d31efcff | 22 | $(top_builddir)/src/common/compat/libcompat.la |
10a8a223 DG |
23 | |
24 | if HAVE_LIBLTTNG_UST_CTL | |
25 | libconsumer_la_LIBADD += \ | |
26 | $(top_builddir)/src/common/ust-consumer/libust-consumer.la | |
27 | endif |