Commit | Line | Data |
---|---|---|
74130cb7 PC |
1 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ |
2 | -DINSTALL_BIN_PATH=\""$(bindir)"\" | |
3f5fa9ed | 3 | |
d26c59c5 MD |
4 | AUTOMAKE_OPTIONS = subdir-objects |
5 | ||
fac6795d DG |
6 | bin_PROGRAMS = lttng |
7 | ||
68080f48 | 8 | lttng_SOURCES = command.h conf.c conf.h commands/start.c \ |
f3ed775e DG |
9 | commands/list.c commands/create.c commands/destroy.c \ |
10 | commands/stop.c commands/enable_events.c \ | |
d36b8583 | 11 | commands/disable_events.c commands/enable_channels.c \ |
d65106b1 | 12 | commands/disable_channels.c commands/add_context.c \ |
eb9cb8b7 | 13 | commands/set_session.c commands/version.c \ |
0c95f5b2 | 14 | commands/calibrate.c commands/view.c \ |
57f272ed | 15 | commands/snapshot.c \ |
c864d6d7 | 16 | commands/save.c \ |
8c42d845 | 17 | commands/load.c \ |
ccf10263 | 18 | commands/track-untrack.c \ |
54a0adbf | 19 | commands/status.c \ |
0c95f5b2 | 20 | utils.c utils.h lttng.c |
fac6795d | 21 | |
00e2e675 | 22 | lttng_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
8c42d845 JG |
23 | $(top_builddir)/src/common/libcommon.la \ |
24 | $(top_builddir)/src/common/config/libconfig.la |