configure: add '-Wredundant-decls' to warning flags
[lttng-tools.git] / tests / regression / ust / daemon / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
343af227 3AM_CPPFLAGS += -I$(srcdir)
43c28d50 4
19708280
MJ
5# Disable some warnings flags to accomodate the tracepoint headers
6AM_CFLAGS += \
7 -Wno-redundant-decls
8
43c28d50
JG
9noinst_PROGRAMS = daemon
10daemon_SOURCES = daemon.c ust_tests_daemon.h
20dd2de1 11daemon_LDADD = $(UST_LIBS) -llttng-ust-fork $(DL_LIBS)
43c28d50
JG
12
13noinst_SCRIPTS = test_daemon test_daemon.py
14EXTRA_DIST = test_daemon test_daemon.py
c83e7ca0
DG
15
16all-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
23clean-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.043264 seconds and 4 git commands to generate.