configure: add '-Wredundant-decls' to warning flags
[lttng-tools.git] / doc / examples / trigger-condition-event-matches / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2
3AM_CPPFLAGS += -I$(srcdir)
4
5AM_CFLAGS += -Wno-redundant-decls
6
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
20notification_client_SOURCES = notification-client.cpp
21notification_client_LDADD = $(LIBLTTNG_CTL)
22
23endif
This page took 0.022819 seconds and 4 git commands to generate.