Add trigger on event rule matches application example
[lttng-tools.git] / doc / examples / trigger-condition-event-matches / Makefile.am
CommitLineData
595ed92e
JR
1# SPDX-License-Identifier: GPL-2.0-only
2
3AM_CPPFLAGS += -I$(srcdir)
4
5LIBLTTNG_CTL=$(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
6dist_noinst_SCRIPTS = demo.sh
7EXTRA_DIST = README.md
8
9if HAVE_LIBLTTNG_UST_CTL
10noinst_PROGRAMS = instrumented-app notification-client
11noinst_LIBRARIES = libtracepoint-trigger-example.a
12
13libtracepoint_trigger_example_a_SOURCES = tracepoint-trigger-example.c tracepoint-trigger-example.h
14
15instrumented_app_SOURCES = instrumented-app.c
16instrumented_app_LDADD = libtracepoint-trigger-example.a $(UST_LIBS) $(DL_LIBS)
17
18notification_client_SOURCES = notification-client.c
19notification_client_LDADD = $(LIBLTTNG_CTL)
20
21endif
This page took 0.023873 seconds and 4 git commands to generate.