configure: add '-Wredundant-decls' to warning flags
[lttng-tools.git] / tests / utils / testapp / gen-ust-events / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS += -I$(top_srcdir)/tests/utils -I$(srcdir) \
4 -I$(top_srcdir)/tests/utils/testapp
5
6 if HAVE_LIBLTTNG_UST_CTL
7 # Disable some warnings flags to accomodate the tracepoint headers
8 WARN_FLAGS = \
9 -Wno-redundant-decls
10
11 AM_CFLAGS += $(WARN_FLAGS)
12 AM_CXXFLAGS += $(WARN_FLAGS)
13
14 noinst_PROGRAMS = gen-ust-events
15 gen_ust_events_SOURCES = \
16 gen-ust-events.cpp \
17 tp.c \
18 tp.h
19 gen_ust_events_LDADD = $(UST_LIBS) \
20 $(top_builddir)/tests/utils/libtestutils.la \
21 $(DL_LIBS)
22 endif
This page took 0.047542 seconds and 4 git commands to generate.