Select which binaries/extras to build at configure time
[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.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 sessiond-comm/unix.c sessiond-comm/unix.h
76
77libcommon_la_LIBADD = \
78 -luuid \
79 -lrt \
80 $(top_builddir)/src/common/config/libconfig.la
81
82all-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
89clean-local:
90 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
91 for script in $(EXTRA_DIST); do \
92 rm -f $(builddir)/$$script; \
93 done; \
94 fi
This page took 0.024013 seconds and 5 git commands to generate.