X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-ust-events%2FMakefile.am;h=27896e13665af420e83dadb68ad131164812ef1b;hb=c9e313bc594f40a86eed237dce222c0fc99c957f;hp=38e620d75274515d5635b5381013b199664595a1;hpb=20dd2de1fa1efe1519d1b6e88386efa89d60d1b9;p=lttng-tools.git diff --git a/tests/utils/testapp/gen-ust-events/Makefile.am b/tests/utils/testapp/gen-ust-events/Makefile.am index 38e620d75..27896e136 100644 --- a/tests/utils/testapp/gen-ust-events/Makefile.am +++ b/tests/utils/testapp/gen-ust-events/Makefile.am @@ -1,9 +1,22 @@ +# SPDX-License-Identifier: GPL-2.0-only + AM_CPPFLAGS += -I$(top_srcdir)/tests/utils -I$(srcdir) \ -I$(top_srcdir)/tests/utils/testapp if HAVE_LIBLTTNG_UST_CTL +# Disable some warnings flags to accomodate the tracepoint headers +WARN_FLAGS = \ + -Wno-redundant-decls \ + -Wno-missing-field-initializers + +AM_CFLAGS += $(WARN_FLAGS) +AM_CXXFLAGS += $(WARN_FLAGS) + noinst_PROGRAMS = gen-ust-events -gen_ust_events_SOURCES = gen-ust-events.c tp.c tp.h +gen_ust_events_SOURCES = \ + gen-ust-events.cpp \ + tp.c \ + tp.h gen_ust_events_LDADD = $(UST_LIBS) \ $(top_builddir)/tests/utils/libtestutils.la \ $(DL_LIBS)