| 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src |
| 2 | |
| 3 | AUTOMAKE_OPTIONS = subdir-objects |
| 4 | |
| 5 | SUBDIRS = |
| 6 | |
| 7 | # Make sure to always distribute all folders |
| 8 | # since SUBDIRS is decided at configure time. |
| 9 | DIST_SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \ |
| 10 | kernel-consumer ust-consumer testpoint index config consumer |
| 11 | |
| 12 | if BUILD_LIB_COMPAT |
| 13 | SUBDIRS += compat |
| 14 | endif |
| 15 | |
| 16 | if BUILD_LIB_HEALTH |
| 17 | SUBDIRS += health |
| 18 | endif |
| 19 | |
| 20 | if BUILD_LIB_HASHTABLE |
| 21 | SUBDIRS += hashtable |
| 22 | endif |
| 23 | |
| 24 | if BUILD_LIB_KERNEL_CTL |
| 25 | SUBDIRS += kernel-ctl |
| 26 | endif |
| 27 | |
| 28 | if BUILD_LIB_SESSIOND_COMM |
| 29 | SUBDIRS += sessiond-comm |
| 30 | endif |
| 31 | |
| 32 | if BUILD_LIB_RELAYD |
| 33 | SUBDIRS += relayd |
| 34 | endif |
| 35 | |
| 36 | if BUILD_LIB_KERNEL_CONSUMER |
| 37 | SUBDIRS += kernel-consumer |
| 38 | endif |
| 39 | |
| 40 | if BUILD_LIB_UST_CONSUMER |
| 41 | SUBDIRS += ust-consumer |
| 42 | endif |
| 43 | |
| 44 | if BUILD_LIB_TESTPOINT |
| 45 | SUBDIRS += testpoint |
| 46 | endif |
| 47 | |
| 48 | if BUILD_LIB_INDEX |
| 49 | SUBDIRS += index |
| 50 | endif |
| 51 | |
| 52 | if BUILD_LIB_CONFIG |
| 53 | SUBDIRS += config |
| 54 | endif |
| 55 | |
| 56 | if BUILD_LIB_CONSUMER |
| 57 | SUBDIRS += consumer |
| 58 | endif |
| 59 | |
| 60 | AM_CFLAGS = -fno-strict-aliasing |
| 61 | |
| 62 | noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \ |
| 63 | uri.h utils.h lttng-kernel-old.h \ |
| 64 | align.h bitfield.h bug.h |
| 65 | |
| 66 | # Common library |
| 67 | noinst_LTLIBRARIES = libcommon.la |
| 68 | EXTRA_DIST = mi_lttng.xsd |
| 69 | |
| 70 | libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \ |
| 71 | common.h futex.c futex.h uri.c uri.h defaults.c \ |
| 72 | pipe.c pipe.h readwrite.c readwrite.h \ |
| 73 | mi-lttng.h mi-lttng.c \ |
| 74 | daemonize.c daemonize.h \ |
| 75 | sessiond-comm/unix.c sessiond-comm/unix.h |
| 76 | |
| 77 | libcommon_la_LIBADD = \ |
| 78 | -luuid \ |
| 79 | -lrt \ |
| 80 | $(top_builddir)/src/common/config/libconfig.la |
| 81 | |
| 82 | all-local: |
| 83 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ |
| 84 | for script in $(EXTRA_DIST); do \ |
| 85 | cp -f $(srcdir)/$$script $(builddir); \ |
| 86 | done; \ |
| 87 | fi |
| 88 | |
| 89 | clean-local: |
| 90 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ |
| 91 | for script in $(EXTRA_DIST); do \ |
| 92 | rm -f $(builddir)/$$script; \ |
| 93 | done; \ |
| 94 | fi |