Allow consumer to flush buffers, fix alignment bug
[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.la
7
8 liblttng_ust_runtime_la_SOURCES = \
9 lttng-ust-comm.c \
10 lttng-ust-abi.c \
11 ltt-probes.c \
12 probes/lttng-probe-ust.c \
13 probes/lttng-probe-ust.h \
14 lttng-context-vtid.c \
15 lttng-context-vpid.c \
16 lttng-context-pthread-id.c \
17 lttng-context-procname.c \
18 ltt-context.c \
19 ltt-events.c \
20 tracepoint.c
21
22 liblttng_ust_support_la_SOURCES = \
23 ltt-tracer.h \
24 ltt-tracer-core.h \
25 ust-core.c \
26 ltt-ring-buffer-client.h \
27 ltt-ring-buffer-client-discard.c \
28 ltt-ring-buffer-client-overwrite.c \
29 ltt-ring-buffer-metadata-client.h \
30 ltt-ring-buffer-metadata-client.c
31
32 liblttng_ust_la_SOURCES =
33
34 liblttng_ust_la_LDFLAGS = -no-undefined -version-info 0:0:0
35
36 liblttng_ust_support_la_LIBADD = \
37 $(top_builddir)/libringbuffer/libringbuffer.la
38
39 liblttng_ust_la_LIBADD = \
40 -lpthread \
41 -lrt \
42 -luuid \
43 $(top_builddir)/snprintf/libustsnprintf.la \
44 $(top_builddir)/liblttng-ust-comm/liblttng-ust-comm.la \
45 liblttng-ust-runtime.la liblttng-ust-support.la
46
47 liblttng_ust_la_CFLAGS = -DUST_COMPONENT="liblttng-ust" -fno-strict-aliasing
This page took 0.031497 seconds and 5 git commands to generate.