Commit | Line | Data |
---|---|---|
343af227 | 1 | AM_CPPFLAGS += -DINSTALL_BIN_PATH=\""$(bindir)"\" |
3f5fa9ed | 2 | |
4fc83d94 PP |
3 | if EMBED_HELP |
4 | AM_CPPFLAGS += -I$(top_builddir)/doc/man | |
5 | endif | |
6 | ||
d26c59c5 MD |
7 | AUTOMAKE_OPTIONS = subdir-objects |
8 | ||
fac6795d DG |
9 | bin_PROGRAMS = lttng |
10 | ||
68080f48 | 11 | lttng_SOURCES = command.h conf.c conf.h commands/start.c \ |
f3ed775e DG |
12 | commands/list.c commands/create.c commands/destroy.c \ |
13 | commands/stop.c commands/enable_events.c \ | |
d36b8583 | 14 | commands/disable_events.c commands/enable_channels.c \ |
d65106b1 | 15 | commands/disable_channels.c commands/add_context.c \ |
eb9cb8b7 | 16 | commands/set_session.c commands/version.c \ |
95057847 | 17 | commands/view.c \ |
57f272ed | 18 | commands/snapshot.c \ |
c864d6d7 | 19 | commands/save.c \ |
8c42d845 | 20 | commands/load.c \ |
ccf10263 | 21 | commands/track-untrack.c \ |
54a0adbf | 22 | commands/status.c \ |
93ec662e | 23 | commands/metadata.c \ |
eded6438 | 24 | commands/regenerate.c \ |
960afba4 | 25 | commands/help.c \ |
d68c9a04 | 26 | commands/rotate.c \ |
259c2674 JD |
27 | commands/enable_rotation.c \ |
28 | commands/disable_rotation.c \ | |
0c95f5b2 | 29 | utils.c utils.h lttng.c |
fac6795d | 30 | |
f541e771 YL |
31 | lttng_CFLAGS = $(AM_CFLAGS) $(POPT_CFLAGS) |
32 | ||
00e2e675 | 33 | lttng_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \ |
8c42d845 | 34 | $(top_builddir)/src/common/libcommon.la \ |
9f449915 | 35 | $(top_builddir)/src/common/config/libconfig.la \ |
4f985cf8 MJ |
36 | $(top_builddir)/src/common/string-utils/libstring-utils.la \ |
37 | $(POPT_LIBS) |