From 761f42b31e9e116d77013f1c2f74d2a424c7b65e Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 9 Mar 2023 16:07:20 +0700 Subject: [PATCH] tests/Makefile.am: clean up AM_* variables * -I is a preprocessor flag, so it should be in AM_CPPFLAGS * $(LIBOSMOCORE_LDFLAGS) is not defined here, remove it Change-Id: Ice892f848e06b601e67b06a4e1e25c11fb7c4128 --- tests/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index c43419b..cc33960 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,5 +1,6 @@ -AM_CFLAGS = -Wall -I$(top_srcdir)/include $(LIBOSMOCORE_CFLAGS) -g -AM_LDFLAGS = $(LIBOSMOCORE_LDFLAGS) -no-install +AM_CPPFLAGS = -I$(top_srcdir)/include +AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) -g +AM_LDFLAGS = -no-install LDADD = \ $(top_builddir)/src/libosmonetif.la \