Fix: zero-initialize fd_set
[lttng-tools.git] / src / common / Makefile.am
... / ...
CommitLineData
1AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
3AUTOMAKE_OPTIONS = subdir-objects
4
5SUBDIRS =
6
7# Make sure to always distribute all folders
8# since SUBDIRS is decided at configure time.
9DIST_SUBDIRS = compat health hashtable kernel-ctl sessiond-comm relayd \
10 kernel-consumer ust-consumer testpoint index config consumer
11
12if BUILD_LIB_COMPAT
13SUBDIRS += compat
14endif
15
16if BUILD_LIB_HEALTH
17SUBDIRS += health
18endif
19
20if BUILD_LIB_HASHTABLE
21SUBDIRS += hashtable
22endif
23
24if BUILD_LIB_KERNEL_CTL
25SUBDIRS += kernel-ctl
26endif
27
28if BUILD_LIB_SESSIOND_COMM
29SUBDIRS += sessiond-comm
30endif
31
32if BUILD_LIB_RELAYD
33SUBDIRS += relayd
34endif
35
36if BUILD_LIB_KERNEL_CONSUMER
37SUBDIRS += kernel-consumer
38endif
39
40if BUILD_LIB_UST_CONSUMER
41SUBDIRS += ust-consumer
42endif
43
44if BUILD_LIB_TESTPOINT
45SUBDIRS += testpoint
46endif
47
48if BUILD_LIB_INDEX
49SUBDIRS += index
50endif
51
52if BUILD_LIB_CONFIG
53SUBDIRS += config
54endif
55
56if BUILD_LIB_CONSUMER
57SUBDIRS += consumer
58endif
59
60AM_CFLAGS = -fno-strict-aliasing
61
62noinst_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
67noinst_LTLIBRARIES = libcommon.la
68EXTRA_DIST = mi-lttng-3.0.xsd
69
70libcommon_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 unix.c unix.h \
76 filter.c filter.h context.c context.h
77
78libcommon_la_LIBADD = \
79 -luuid \
80 -lrt \
81 $(top_builddir)/src/common/config/libconfig.la
82
83all-local:
84 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
85 for script in $(EXTRA_DIST); do \
86 cp -f $(srcdir)/$$script $(builddir); \
87 done; \
88 fi
89
90clean-local:
91 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
92 for script in $(EXTRA_DIST); do \
93 rm -f $(builddir)/$$script; \
94 done; \
95 fi
This page took 0.022268 seconds and 4 git commands to generate.