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