4b1484e8be637c8bee849e0a2cc0bf43d918410d
[lttng-tools.git] / src / common / Makefile.am
1 AUTOMAKE_OPTIONS = subdir-objects
2
3 SUBDIRS = string-utils
4
5 # Make sure to always distribute all folders
6 # since SUBDIRS is decided at configure time.
7 DIST_SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \
8 kernel-consumer ust-consumer testpoint index config consumer \
9 string-utils
10 #
11 # Common library
12 noinst_LTLIBRARIES = libcommon.la
13 EXTRA_DIST = mi-lttng-3.0.xsd
14
15 libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.h runas.c \
16 common.h futex.c futex.h uri.c uri.h defaults.c \
17 pipe.c pipe.h readwrite.c readwrite.h \
18 mi-lttng.h mi-lttng.c \
19 daemonize.c daemonize.h \
20 unix.c unix.h \
21 filter.c filter.h context.c context.h \
22 action.c notify.c condition.c buffer-usage.c \
23 session-consumed-size.c \
24 session-rotation.c \
25 evaluation.c notification.c trigger.c endpoint.c \
26 dynamic-buffer.h dynamic-buffer.c \
27 buffer-view.h buffer-view.c \
28 location.c \
29 waiter.h waiter.c \
30 userspace-probe.c event.c time.c \
31 session-descriptor.c credentials.h \
32 trace-chunk.c trace-chunk.h trace-chunk-registry.h \
33 dynamic-array.h dynamic-array.c optional.h
34
35 if HAVE_ELF_H
36 libcommon_la_SOURCES += lttng-elf.h lttng-elf.c
37 endif
38
39 libcommon_la_LIBADD = \
40 $(top_builddir)/src/common/config/libconfig.la \
41 $(top_builddir)/src/common/compat/libcompat.la \
42 $(UUID_LIBS)
43
44 if BUILD_LIB_COMPAT
45 SUBDIRS += compat
46 endif
47
48 if BUILD_LIB_HEALTH
49 SUBDIRS += health
50 endif
51
52 if BUILD_LIB_HASHTABLE
53 SUBDIRS += hashtable
54 endif
55
56 if BUILD_LIB_KERNEL_CTL
57 SUBDIRS += kernel-ctl
58 endif
59
60 if BUILD_LIB_SESSIOND_COMM
61 SUBDIRS += sessiond-comm
62 endif
63
64 if BUILD_LIB_RELAYD
65 SUBDIRS += relayd
66 endif
67
68 if BUILD_LIB_KERNEL_CONSUMER
69 SUBDIRS += kernel-consumer
70 endif
71
72 if BUILD_LIB_UST_CONSUMER
73 SUBDIRS += ust-consumer
74 endif
75
76 if BUILD_LIB_TESTPOINT
77 SUBDIRS += testpoint
78 endif
79
80 if BUILD_LIB_INDEX
81 SUBDIRS += index
82 endif
83
84 if BUILD_LIB_CONFIG
85 SUBDIRS += config
86 endif
87
88 if BUILD_LIB_CONSUMER
89 SUBDIRS += consumer
90 endif
91
92 noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \
93 uri.h utils.h lttng-kernel-old.h \
94 align.h bug.h time.h
95
96 all-local:
97 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
98 for script in $(EXTRA_DIST); do \
99 cp -f $(srcdir)/$$script $(builddir); \
100 done; \
101 fi
102
103 clean-local:
104 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
105 for script in $(EXTRA_DIST); do \
106 rm -f $(builddir)/$$script; \
107 done; \
108 fi
This page took 0.031233 seconds and 3 git commands to generate.