Filter: split passes into separate components
[lttng-ust.git] / liblttng-ust / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include
2 AM_CFLAGS = -fno-strict-aliasing
3
4 noinst_LTLIBRARIES = liblttng-ust-runtime.la liblttng-ust-support.la
5
6 lib_LTLIBRARIES = liblttng-ust-tracepoint.la liblttng-ust.la
7
8 liblttng_ust_tracepoint_la_SOURCES = \
9 tracepoint.c \
10 tracepoint-internal.h \
11 ltt-tracer-core.h \
12 jhash.h \
13 error.h
14 liblttng_ust_tracepoint_la_LIBADD = \
15 -lurcu-bp
16 liblttng_ust_tracepoint_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIBRARY_VERSION)
17 liblttng_ust_tracepoint_la_CFLAGS = -DUST_COMPONENT="liblttng_ust_tracepoint" -fno-strict-aliasing
18
19 liblttng_ust_runtime_la_SOURCES = \
20 lttng-ust-comm.c \
21 lttng-ust-abi.c \
22 ltt-probes.c \
23 probes/lttng-probe-ust.c \
24 probes/lttng-probe-ust.h \
25 lttng-context-vtid.c \
26 lttng-context-vpid.c \
27 lttng-context-pthread-id.c \
28 lttng-context-procname.c \
29 ltt-context.c \
30 ltt-events.c \
31 lttng-filter.c \
32 lttng-filter-validator.c \
33 lttng-filter-specialize.c \
34 lttng-filter-interpreter.c \
35 filter-bytecode.h \
36 tracepoint-internal.h \
37 clock.h \
38 compat.h \
39 wait.h \
40 jhash.h \
41 error.h \
42 lttng-ust-uuid.h
43
44 liblttng_ust_support_la_SOURCES = \
45 ltt-tracer.h \
46 ltt-tracer-core.h \
47 ust-core.c \
48 ltt-ring-buffer-client.h \
49 ltt-ring-buffer-client-discard.c \
50 ltt-ring-buffer-client-overwrite.c \
51 ltt-ring-buffer-metadata-client.h \
52 ltt-ring-buffer-metadata-client.c
53
54 liblttng_ust_la_SOURCES =
55
56 liblttng_ust_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIBRARY_VERSION)
57
58 liblttng_ust_support_la_LIBADD = \
59 $(top_builddir)/libringbuffer/libringbuffer.la
60
61 liblttng_ust_la_LIBADD = \
62 -lpthread \
63 -lrt \
64 -llttng-ust-tracepoint \
65 $(top_builddir)/snprintf/libustsnprintf.la \
66 $(top_builddir)/liblttng-ust-comm/liblttng-ust-comm.la \
67 liblttng-ust-runtime.la liblttng-ust-support.la
68
69 if LTTNG_UST_BUILD_WITH_LIBUUID
70 liblttng_ust_la_LIBADD += -luuid
71 endif
72 if LTTNG_UST_BUILD_WITH_LIBC_UUID
73 liblttng_ust_la_LIBADD += -lc
74 endif
75
76 liblttng_ust_la_CFLAGS = -DUST_COMPONENT="liblttng_ust" -fno-strict-aliasing
This page took 0.032287 seconds and 5 git commands to generate.