configure: add '-Wredundant-decls' to warning flags
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-ns / 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-ns
15 gen_ust_events_ns_SOURCES = \
16 gen-ust-events-ns.cpp \
17 tp.c \
18 tp.h
19 gen_ust_events_ns_LDADD = $(UST_LIBS) -llttng-ust-fork \
20 $(top_builddir)/tests/utils/libtestutils.la \
21 $(DL_LIBS) $(POPT_LIBS)
22 endif
This page took 0.036731 seconds and 4 git commands to generate.