From: Bartosz Golaszewski Date: Thu, 16 Mar 2023 08:24:47 +0000 (+0100) Subject: tests: drop the profiling CFLAGS from tests' Makefile X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=dc746daef25f2f6b2ce392c991161f1186fd0f7b;p=qemu-gpiodev%2Flibgpiod.git tests: drop the profiling CFLAGS from tests' Makefile We only need the profiling flags on the library, we don't need to generate gcov data for the test objects. Signed-off-by: Bartosz Golaszewski --- diff --git a/tests/Makefile.am b/tests/Makefile.am index 9171a58..713be8e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -7,7 +7,6 @@ AM_CFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/tests/gpiosim/ AM_CFLAGS += -include $(top_builddir)/config.h AM_CFLAGS += -Wall -Wextra -g -std=gnu89 $(GLIB_CFLAGS) $(GIO_CFLAGS) AM_CFLAGS += -DG_LOG_DOMAIN=\"gpiod-test\" -AM_CFLAGS += $(PROFILING_CFLAGS) LDADD = $(top_builddir)/lib/libgpiod.la LDADD += $(top_builddir)/tests/gpiosim/libgpiosim.la LDADD += $(GLIB_LIBS) $(GIO_LIBS)