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
This commit is contained in:
Vadim Yanitskiy 2023-03-09 16:07:20 +07:00
parent c8620bf275
commit 761f42b31e
1 changed files with 3 additions and 2 deletions

View File

@ -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 \