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 \ | |
9 | channels.c \ | |
10 | channels.h \ | |
11 | marker-control.c \ | |
12 | marker-control.h \ | |
13 | buffers.c \ | |
14 | buffers.h \ | |
15 | tracer.c \ | |
16 | tracer.h \ | |
17 | tracercore.c \ | |
18 | tracercore.h \ | |
19 | serialize.c \ | |
20 | tracectl.c \ | |
0e4b45ac | 21 | $(top_builddir)/libustcomm/multipoll.c \ |
b73a4c47 PMF |
22 | tracerconst.h \ |
23 | header-inline.h | |
c7dc133c | 24 | |
afa28e03 | 25 | libust_la_LDFLAGS = -no-undefined -version-info 0:0:0 |
c7dc133c PMF |
26 | |
27 | libust_la_LIBADD = \ | |
28 | -lpthread \ | |
29 | $(top_builddir)/snprintf/libustsnprintf.la \ | |
30 | $(top_builddir)/libustcomm/libustcomm.la | |
31 | ||
16c83055 | 32 | libust_la_CFLAGS = -DUST_COMPONENT="libust" -fno-strict-aliasing |