lttng-ctl: add userspace probe location interface
[lttng-tools.git] / src / common / Makefile.am
CommitLineData
26821431
MD
1AUTOMAKE_OPTIONS = subdir-objects
2
9c55c241 3SUBDIRS = string-utils
87fb9fc0
JR
4
5# Make sure to always distribute all folders
6# since SUBDIRS is decided at configure time.
7DIST_SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \
8419e18f
JG
8 kernel-consumer ust-consumer testpoint index config consumer \
9 string-utils
87fb9fc0
JR
10
11if BUILD_LIB_COMPAT
12SUBDIRS += compat
13endif
14
15if BUILD_LIB_HEALTH
16SUBDIRS += health
17endif
18
19if BUILD_LIB_HASHTABLE
20SUBDIRS += hashtable
21endif
22
23if BUILD_LIB_KERNEL_CTL
24SUBDIRS += kernel-ctl
25endif
26
27if BUILD_LIB_SESSIOND_COMM
28SUBDIRS += sessiond-comm
29endif
30
31if BUILD_LIB_RELAYD
32SUBDIRS += relayd
33endif
34
35if BUILD_LIB_KERNEL_CONSUMER
36SUBDIRS += kernel-consumer
37endif
38
39if BUILD_LIB_UST_CONSUMER
40SUBDIRS += ust-consumer
41endif
42
43if BUILD_LIB_TESTPOINT
44SUBDIRS += testpoint
45endif
46
47if BUILD_LIB_INDEX
48SUBDIRS += index
49endif
50
51if BUILD_LIB_CONFIG
52SUBDIRS += config
53endif
54
55if BUILD_LIB_CONSUMER
56SUBDIRS += consumer
57endif
10a8a223 58
0b5fb049 59noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \
331744e3 60 uri.h utils.h lttng-kernel-old.h \
395d6b02 61 align.h bitfield.h bug.h time.h
1c39da61 62
00e2e675 63# Common library
10a8a223 64noinst_LTLIBRARIES = libcommon.la
654f9f5e 65EXTRA_DIST = mi-lttng-3.0.xsd
10a8a223 66
6242251b 67libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \
9fd92637 68 common.h futex.c futex.h uri.c uri.h defaults.c \
99ed9c43 69 pipe.c pipe.h readwrite.c readwrite.h \
c7e35b03 70 mi-lttng.h mi-lttng.c \
7567352f 71 daemonize.c daemonize.h \
2038dd6c 72 unix.c unix.h \
a58c490f
JG
73 filter.c filter.h context.c context.h \
74 action.c notify.c condition.c buffer-usage.c \
e8360425 75 session-consumed-size.c \
c19092cd 76 session-rotation.c \
a58c490f 77 evaluation.c notification.c trigger.c endpoint.c \
01dc0eed 78 dynamic-buffer.h dynamic-buffer.c \
287a512f 79 buffer-view.h buffer-view.c \
434131e4 80 location.c \
1ce46cfe
JG
81 waiter.h waiter.c \
82 userspace-probe.c
7567352f 83
c7e35b03 84libcommon_la_LIBADD = \
009eade4
MJ
85 $(top_builddir)/src/common/config/libconfig.la \
86 $(UUID_LIBS)
10a8a223 87
c49fc5e4
JR
88all-local:
89 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
90 for script in $(EXTRA_DIST); do \
91 cp -f $(srcdir)/$$script $(builddir); \
92 done; \
93 fi
94
95clean-local:
96 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
97 for script in $(EXTRA_DIST); do \
98 rm -f $(builddir)/$$script; \
99 done; \
100 fi
This page took 0.062041 seconds and 5 git commands to generate.