bdba28f19f2fadcc851babfa11ef950a2d3ae518
[lttng-tools.git] / src / common / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
3 AUTOMAKE_OPTIONS = subdir-objects
4
5 SUBDIRS = string-utils
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 string-utils
12
13 if BUILD_LIB_COMPAT
14 SUBDIRS += compat
15 endif
16
17 if BUILD_LIB_HEALTH
18 SUBDIRS += health
19 endif
20
21 if BUILD_LIB_HASHTABLE
22 SUBDIRS += hashtable
23 endif
24
25 if BUILD_LIB_KERNEL_CTL
26 SUBDIRS += kernel-ctl
27 endif
28
29 if BUILD_LIB_SESSIOND_COMM
30 SUBDIRS += sessiond-comm
31 endif
32
33 if BUILD_LIB_RELAYD
34 SUBDIRS += relayd
35 endif
36
37 if BUILD_LIB_KERNEL_CONSUMER
38 SUBDIRS += kernel-consumer
39 endif
40
41 if BUILD_LIB_UST_CONSUMER
42 SUBDIRS += ust-consumer
43 endif
44
45 if BUILD_LIB_TESTPOINT
46 SUBDIRS += testpoint
47 endif
48
49 if BUILD_LIB_INDEX
50 SUBDIRS += index
51 endif
52
53 if BUILD_LIB_CONFIG
54 SUBDIRS += config
55 endif
56
57 if BUILD_LIB_CONSUMER
58 SUBDIRS += consumer
59 endif
60
61 AM_CFLAGS = -fno-strict-aliasing
62
63 noinst_HEADERS = lttng-kernel.h defaults.h macros.h error.h futex.h \
64 uri.h utils.h lttng-kernel-old.h \
65 align.h bitfield.h bug.h time.h
66
67 # Common library
68 noinst_LTLIBRARIES = libcommon.la
69 EXTRA_DIST = mi-lttng-3.0.xsd
70
71 libcommon_la_SOURCES = error.h error.c utils.c utils.h runas.c runas.h \
72 common.h futex.c futex.h uri.c uri.h defaults.c \
73 pipe.c pipe.h readwrite.c readwrite.h \
74 mi-lttng.h mi-lttng.c \
75 daemonize.c daemonize.h \
76 unix.c unix.h \
77 filter.c filter.h context.c context.h \
78 action.c notify.c condition.c buffer-usage.c \
79 evaluation.c notification.c trigger.c endpoint.c \
80 dynamic-buffer.h dynamic-buffer.c \
81 buffer-view.h buffer-view.c \
82 waiter.h waiter.c
83
84 libcommon_la_LIBADD = \
85 $(top_builddir)/src/common/config/libconfig.la
86 if LTTNG_BUILD_WITH_LIBUUID
87 libcommon_la_LIBADD += -luuid
88 endif
89 if LTTNG_BUILD_WITH_LIBC_UUID
90 libcommon_la_LIBADD += -lc
91 endif
92
93 all-local:
94 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
95 for script in $(EXTRA_DIST); do \
96 cp -f $(srcdir)/$$script $(builddir); \
97 done; \
98 fi
99
100 clean-local:
101 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
102 for script in $(EXTRA_DIST); do \
103 rm -f $(builddir)/$$script; \
104 done; \
105 fi
This page took 0.031778 seconds and 4 git commands to generate.