X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=doc%2Fexamples%2Ftrigger-condition-event-matches%2FMakefile.am;fp=doc%2Fexamples%2Ftrigger-condition-event-matches%2FMakefile.am;h=bace545b9371e2e8401f9f9ace63120f5314bd5e;hp=0000000000000000000000000000000000000000;hb=595ed92e6d1d46347ac633315c5f711c2fc2015c;hpb=26f0c7794376456fcb5b13d4eae91c0ccf0dfe66 diff --git a/doc/examples/trigger-condition-event-matches/Makefile.am b/doc/examples/trigger-condition-event-matches/Makefile.am new file mode 100644 index 000000000..bace545b9 --- /dev/null +++ b/doc/examples/trigger-condition-event-matches/Makefile.am @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: GPL-2.0-only + +AM_CPPFLAGS += -I$(srcdir) + +LIBLTTNG_CTL=$(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la +dist_noinst_SCRIPTS = demo.sh +EXTRA_DIST = README.md + +if HAVE_LIBLTTNG_UST_CTL +noinst_PROGRAMS = instrumented-app notification-client +noinst_LIBRARIES = libtracepoint-trigger-example.a + +libtracepoint_trigger_example_a_SOURCES = tracepoint-trigger-example.c tracepoint-trigger-example.h + +instrumented_app_SOURCES = instrumented-app.c +instrumented_app_LDADD = libtracepoint-trigger-example.a $(UST_LIBS) $(DL_LIBS) + +notification_client_SOURCES = notification-client.c +notification_client_LDADD = $(LIBLTTNG_CTL) + +endif