Commit | Line | Data |
---|---|---|
6ba31891 FD |
1 | # SPDX-License-Identifier: GPL-2.0-only |
2 | ||
3 | AM_CFLAGS += -I$(srcdir) -I$(top_srcdir)/tests/utils | |
4 | LIBLTTNG_CTL=$(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la | |
5 | ||
19904669 SM |
6 | noinst_PROGRAMS = \ |
7 | notification-client \ | |
8 | register-some-triggers | |
9 | ||
6ba31891 FD |
10 | notification_client_SOURCES = notification-client.c |
11 | notification_client_LDADD = $(LIBLTTNG_CTL) \ | |
19904669 SM |
12 | $(top_builddir)/tests/utils/libtestutils.la |
13 | ||
14 | register_some_triggers_SOURCES = register-some-triggers.c | |
15 | register_some_triggers_LDADD = $(LIBLTTNG_CTL) \ | |
16 | $(top_builddir)/src/common/filter/libfilter.la \ | |
17 | $(top_builddir)/src/common/bytecode/libbytecode.la |