Fix tracepoint event related build errors
[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 tracepoint-internal.h \
22 clock.h \
23 wait.h \
24 jhash.h
25
26 liblttng_ust_support_la_SOURCES = \
27 ltt-tracer.h \
28 ltt-tracer-core.h \
29 ust-core.c \
30 ltt-ring-buffer-client.h \
31 ltt-ring-buffer-client-discard.c \
32 ltt-ring-buffer-client-overwrite.c \
33 ltt-ring-buffer-metadata-client.h \
34 ltt-ring-buffer-metadata-client.c
35
36 liblttng_ust_la_SOURCES =
37
38 liblttng_ust_la_LDFLAGS = -no-undefined -version-info 0:0:0
39
40 liblttng_ust_support_la_LIBADD = \
41 $(top_builddir)/libringbuffer/libringbuffer.la
42
43 liblttng_ust_la_LIBADD = \
44 -lpthread \
45 -lrt \
46 -luuid \
47 $(top_builddir)/snprintf/libustsnprintf.la \
48 $(top_builddir)/liblttng-ust-comm/liblttng-ust-comm.la \
49 liblttng-ust-runtime.la liblttng-ust-support.la
50
51 liblttng_ust_la_CFLAGS = -DUST_COMPONENT="liblttng_ust" -fno-strict-aliasing
This page took 0.031478 seconds and 5 git commands to generate.