X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2FMakefile.am;h=bdba28f19f2fadcc851babfa11ef950a2d3ae518;hp=6ba6c2b59b6c42fb0269680da7bc61323f625783;hb=287a512f2b868c16132b894a8143a5faf0379ca8;hpb=9fd926379bd4c6c17f2b3c39a5bbf9879bc74e14 diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 6ba6c2b59..bdba28f19 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,36 +1,105 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -SUBDIRS = compat hashtable kernel-ctl sessiond-comm relayd \ - kernel-consumer ust-consumer testpoint +AUTOMAKE_OPTIONS = subdir-objects + +SUBDIRS = string-utils + +# Make sure to always distribute all folders +# since SUBDIRS is decided at configure time. +DIST_SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \ + kernel-consumer ust-consumer testpoint index config consumer \ + string-utils + +if BUILD_LIB_COMPAT +SUBDIRS += compat +endif + +if BUILD_LIB_HEALTH +SUBDIRS += health +endif + +if BUILD_LIB_HASHTABLE +SUBDIRS += hashtable +endif + +if BUILD_LIB_KERNEL_CTL +SUBDIRS += kernel-ctl +endif + +if BUILD_LIB_SESSIOND_COMM +SUBDIRS += sessiond-comm +endif + +if BUILD_LIB_RELAYD +SUBDIRS += relayd +endif + +if BUILD_LIB_KERNEL_CONSUMER +SUBDIRS += kernel-consumer +endif + +if BUILD_LIB_UST_CONSUMER +SUBDIRS += ust-consumer +endif + +if BUILD_LIB_TESTPOINT +SUBDIRS += testpoint +endif + +if BUILD_LIB_INDEX +SUBDIRS += index +endif + +if BUILD_LIB_CONFIG +SUBDIRS += config +endif + +if BUILD_LIB_CONSUMER +SUBDIRS += consumer +endif AM_CFLAGS = -fno-strict-aliasing noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \ uri.h utils.h lttng-kernel-old.h \ - consumer-metadata-cache.h consumer-timer.h + align.h bitfield.h bug.h time.h # Common library noinst_LTLIBRARIES = libcommon.la +EXTRA_DIST = mi-lttng-3.0.xsd libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \ common.h futex.c futex.h uri.c uri.h defaults.c \ - pipe.c pipe.h -libcommon_la_LIBADD = -luuid - -# Consumer library -noinst_LTLIBRARIES += libconsumer.la + pipe.c pipe.h readwrite.c readwrite.h \ + mi-lttng.h mi-lttng.c \ + daemonize.c daemonize.h \ + unix.c unix.h \ + filter.c filter.h context.c context.h \ + action.c notify.c condition.c buffer-usage.c \ + evaluation.c notification.c trigger.c endpoint.c \ + dynamic-buffer.h dynamic-buffer.c \ + buffer-view.h buffer-view.c \ + waiter.h waiter.c -libconsumer_la_SOURCES = consumer.c consumer.h consumer-metadata-cache.c \ - consumer-timer.c +libcommon_la_LIBADD = \ + $(top_builddir)/src/common/config/libconfig.la +if LTTNG_BUILD_WITH_LIBUUID +libcommon_la_LIBADD += -luuid +endif +if LTTNG_BUILD_WITH_LIBC_UUID +libcommon_la_LIBADD += -lc +endif -libconsumer_la_LIBADD = \ - $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ - $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \ - $(top_builddir)/src/common/hashtable/libhashtable.la \ - $(top_builddir)/src/common/compat/libcompat.la \ - $(top_builddir)/src/common/relayd/librelayd.la +all-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + cp -f $(srcdir)/$$script $(builddir); \ + done; \ + fi -if HAVE_LIBLTTNG_UST_CTL -libconsumer_la_LIBADD += \ - $(top_builddir)/src/common/ust-consumer/libust-consumer.la -endif +clean-local: + @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + for script in $(EXTRA_DIST); do \ + rm -f $(builddir)/$$script; \ + done; \ + fi