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