cc105d7d319b975093bc3f0a784c487f511c77f8
[lttng-ust.git] / liblttng-ust / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/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 lttng-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 lttng-probes.c \
23 lttng-context-vtid.c \
24 lttng-context-vpid.c \
25 lttng-context-pthread-id.c \
26 lttng-context-procname.c \
27 lttng-context.c \
28 lttng-events.c \
29 lttng-filter.c \
30 lttng-filter.h \
31 lttng-filter-validator.c \
32 lttng-filter-specialize.c \
33 lttng-filter-interpreter.c \
34 filter-bytecode.h \
35 lttng-hash-helper.h \
36 tracepoint-internal.h \
37 clock.h \
38 compat.h \
39 wait.h \
40 jhash.h \
41 lttng-ust-uuid.h \
42 error.h
43
44 liblttng_ust_support_la_SOURCES = \
45 lttng-tracer.h \
46 lttng-tracer-core.h \
47 ust-core.c \
48 lttng-ring-buffer-client.h \
49 lttng-ring-buffer-client-discard.c \
50 lttng-ring-buffer-client-discard-rt.c \
51 lttng-ring-buffer-client-overwrite.c \
52 lttng-ring-buffer-client-overwrite-rt.c \
53 lttng-ring-buffer-metadata-client.h \
54 lttng-ring-buffer-metadata-client.c
55
56 liblttng_ust_la_SOURCES =
57
58 liblttng_ust_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIBRARY_VERSION)
59
60 liblttng_ust_support_la_LIBADD = \
61 $(top_builddir)/libringbuffer/libringbuffer.la
62
63 liblttng_ust_la_LIBADD = \
64 -lpthread \
65 -lrt \
66 -lurcu-cds \
67 -llttng-ust-tracepoint \
68 $(top_builddir)/snprintf/libustsnprintf.la \
69 $(top_builddir)/liblttng-ust-comm/liblttng-ust-comm.la \
70 liblttng-ust-runtime.la liblttng-ust-support.la
71
72 liblttng_ust_la_CFLAGS = -DUST_COMPONENT="liblttng_ust" -fno-strict-aliasing
This page took 0.030633 seconds and 3 git commands to generate.