c1b9d4e7a36f35d1e0c2b43712ba5b962ddbf044
[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 =
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
12 if BUILD_LIB_COMPAT
13 SUBDIRS += compat
14 endif
15
16 if BUILD_LIB_HEALTH
17 SUBDIRS += health
18 endif
19
20 if BUILD_LIB_HASHTABLE
21 SUBDIRS += hashtable
22 endif
23
24 if BUILD_LIB_KERNEL_CTL
25 SUBDIRS += kernel-ctl
26 endif
27
28 if BUILD_LIB_SESSIOND_COMM
29 SUBDIRS += sessiond-comm
30 endif
31
32 if BUILD_LIB_RELAYD
33 SUBDIRS += relayd
34 endif
35
36 if BUILD_LIB_KERNEL_CONSUMER
37 SUBDIRS += kernel-consumer
38 endif
39
40 if BUILD_LIB_UST_CONSUMER
41 SUBDIRS += ust-consumer
42 endif
43
44 if BUILD_LIB_TESTPOINT
45 SUBDIRS += testpoint
46 endif
47
48 if BUILD_LIB_INDEX
49 SUBDIRS += index
50 endif
51
52 if BUILD_LIB_CONFIG
53 SUBDIRS += config
54 endif
55
56 if BUILD_LIB_CONSUMER
57 SUBDIRS += consumer
58 endif
59
60 AM_CFLAGS = -fno-strict-aliasing
61
62 noinst_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
67 noinst_LTLIBRARIES = libcommon.la
68 EXTRA_DIST = mi-lttng-3.0.xsd
69
70 libcommon_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 filter.c filter.h context.c context.h
77
78 libcommon_la_LIBADD = \
79 -luuid \
80 -lrt \
81 $(top_builddir)/src/common/config/libconfig.la
82
83 all-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
90 clean-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.031318 seconds and 3 git commands to generate.