Fix make dist: add missing filter header
[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.h \
33 lttng-filter-validator.c \
34 lttng-filter-specialize.c \
35 lttng-filter-interpreter.c \
36 filter-bytecode.h \
37 lttng-hash-helper.h \
38 tracepoint-internal.h \
39 clock.h \
40 compat.h \
41 wait.h \
42 jhash.h \
43 error.h \
44 lttng-ust-uuid.h
45
46 liblttng_ust_support_la_SOURCES = \
47 ltt-tracer.h \
48 ltt-tracer-core.h \
49 ust-core.c \
50 ltt-ring-buffer-client.h \
51 ltt-ring-buffer-client-discard.c \
52 ltt-ring-buffer-client-overwrite.c \
53 ltt-ring-buffer-metadata-client.h \
54 ltt-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 if LTTNG_UST_BUILD_WITH_LIBUUID
73 liblttng_ust_la_LIBADD += -luuid
74 endif
75 if LTTNG_UST_BUILD_WITH_LIBC_UUID
76 liblttng_ust_la_LIBADD += -lc
77 endif
78
79 liblttng_ust_la_CFLAGS = -DUST_COMPONENT="liblttng_ust" -fno-strict-aliasing
This page took 0.032691 seconds and 5 git commands to generate.