configure: add '-Wredundant-decls' to warning flags
[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
19708280
MJ
5AM_CFLAGS += -Wno-redundant-decls
6
595ed92e
JR
7LIBLTTNG_CTL=$(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
8dist_noinst_SCRIPTS = demo.sh
9EXTRA_DIST = README.md
10
11if HAVE_LIBLTTNG_UST_CTL
12noinst_PROGRAMS = instrumented-app notification-client
13noinst_LIBRARIES = libtracepoint-trigger-example.a
14
15libtracepoint_trigger_example_a_SOURCES = tracepoint-trigger-example.c tracepoint-trigger-example.h
16
17instrumented_app_SOURCES = instrumented-app.c
18instrumented_app_LDADD = libtracepoint-trigger-example.a $(UST_LIBS) $(DL_LIBS)
19
729c1fec 20notification_client_SOURCES = notification-client.cpp
595ed92e
JR
21notification_client_LDADD = $(LIBLTTNG_CTL)
22
23endif
This page took 0.025467 seconds and 4 git commands to generate.