configure: add '-Wredundant-decls' to warning flags
[lttng-tools.git] / tests / regression / ust / multi-session / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CFLAGS += -I$(srcdir)
4
5 # Disable some warnings flags to accomodate the tracepoint headers
6 AM_CFLAGS += \
7 -Wno-redundant-decls
8
9 noinst_PROGRAMS = gen-nevents
10 gen_nevents_SOURCES = gen-nevents.c tp.c ust_gen_nevents.h
11 gen_nevents_LDADD = $(UST_LIBS) $(DL_LIBS)
12
13 noinst_SCRIPTS = test_multi_session
14 EXTRA_DIST = test_multi_session
15
16 all-local:
17 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
18 for script in $(EXTRA_DIST); do \
19 cp -f $(srcdir)/$$script $(builddir); \
20 done; \
21 fi
22
23 clean-local:
24 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
25 for script in $(EXTRA_DIST); do \
26 rm -f $(builddir)/$$script; \
27 done; \
28 fi
This page took 0.03014 seconds and 4 git commands to generate.