Commit | Line | Data |
---|---|---|
41ba5806 | 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/libustcomm |
16c83055 | 2 | AM_CFLAGS = -fno-strict-aliasing |
55355fa5 | 3 | |
b4512257 | 4 | lib_LTLIBRARIES = libust.la |
c7dc133c | 5 | |
b73a4c47 PMF |
6 | libust_la_SOURCES = \ |
7 | marker.c \ | |
8 | tracepoint.c \ | |
0c0686ee | 9 | trace_event.c \ |
b73a4c47 PMF |
10 | channels.c \ |
11 | channels.h \ | |
12 | marker-control.c \ | |
13 | marker-control.h \ | |
14 | buffers.c \ | |
15 | buffers.h \ | |
16 | tracer.c \ | |
17 | tracer.h \ | |
18 | tracercore.c \ | |
19 | tracercore.h \ | |
20 | serialize.c \ | |
21 | tracectl.c \ | |
b73a4c47 | 22 | tracerconst.h \ |
12e81b07 PMF |
23 | header-inline.h \ |
24 | type-serializer.c | |
c7dc133c | 25 | |
afa28e03 | 26 | libust_la_LDFLAGS = -no-undefined -version-info 0:0:0 |
c7dc133c PMF |
27 | |
28 | libust_la_LIBADD = \ | |
29 | -lpthread \ | |
ca4525b5 | 30 | -lrt \ |
c7dc133c PMF |
31 | $(top_builddir)/snprintf/libustsnprintf.la \ |
32 | $(top_builddir)/libustcomm/libustcomm.la | |
33 | ||
16c83055 | 34 | libust_la_CFLAGS = -DUST_COMPONENT="libust" -fno-strict-aliasing |