From 9631b64b45462adff692dbc12e72a4d3b3352600 Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Sat, 9 Jan 2021 10:08:32 +1100 Subject: [PATCH] Use make variables instead of autoconf replacements --- src/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 099f55e..bb7c04c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -41,10 +41,10 @@ trader_SOURCES = \ utils.c utils.h \ system.h -trader_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib \ - @CURSES_CFLAGS@ -DLOCALEDIR=\"$(localedir)\" -trader_LDADD = @CURSES_LIBS@ $(top_builddir)/lib/libgnu.a \ - @LIB_HARD_LOCALE@ @LIB_MBRTOWC@ @LIB_SETLOCALE_NULL@ \ - @LIBICONV@ @LIBINTL@ +trader_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib \ + $(CURSES_CFLAGS) -DLOCALEDIR=\"$(localedir)\" +trader_LDADD = $(CURSES_LIBS) $(top_builddir)/lib/libgnu.a \ + $(LIB_HARD_LOCALE) $(LIB_MBRTOWC) $(LIB_SETLOCALE_NULL) \ + $(LIBICONV) $(LIBINTL) EXTRA_DIST = README