X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Ftrigger%2Futils%2FMakefile.am;h=d90a45ea570e2b82e31eddfe1292d3539bd3c230;hb=10c9e48bf29b5d7736b5c8635afb50f7c422e1a4;hp=4b716cadbe5ff76d053720d99ff77a1b11530309;hpb=6ba3189157b61924ae7fe08ff32fb02e81f56f24;p=lttng-tools.git diff --git a/tests/regression/tools/trigger/utils/Makefile.am b/tests/regression/tools/trigger/utils/Makefile.am index 4b716cadb..d90a45ea5 100644 --- a/tests/regression/tools/trigger/utils/Makefile.am +++ b/tests/regression/tools/trigger/utils/Makefile.am @@ -1,9 +1,18 @@ # SPDX-License-Identifier: GPL-2.0-only -AM_CFLAGS += -I$(srcdir) -I$(top_srcdir)/tests/utils +AM_CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/tests/utils LIBLTTNG_CTL=$(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la +LIBCOMMON_LGPL=$(top_builddir)/src/common/libcommon-lgpl.la -noinst_PROGRAMS = notification-client -notification_client_SOURCES = notification-client.c -notification_client_LDADD = $(LIBLTTNG_CTL) \ - $(top_builddir)/tests/utils/libtestutils.la +noinst_PROGRAMS = \ + notification-client \ + register-some-triggers + +notification_client_SOURCES = notification-client.cpp +notification_client_LDADD = $(LIBLTTNG_CTL) $(LIBCOMMON_LGPL) \ + $(top_builddir)/tests/utils/libtestutils.la + +register_some_triggers_SOURCES = register-some-triggers.cpp +register_some_triggers_LDADD = $(LIBLTTNG_CTL) \ + $(top_builddir)/src/common/libfilter.la \ + $(top_builddir)/src/common/libbytecode.la