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