Although ${} is valid in Makefiles, the usual convention is
to use $().
(Note: both *are* POSIX.)
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
mconf_SOURCES = mconf.c
mconf_CPPFLAGS = $(AM_CPPFLAGS) \
- -DCURSES_LOC='"${CURSES_LOC}"' \
+ -DCURSES_LOC='"$(CURSES_LOC)"' \
$(GETTEXT) \
-I../../libs \
-I../../libs/parser
mconf_LDADD = ../../libs/parser/libkconfigparser.la \
../../libs/lxdialog/liblxdialog.a \
- ${ncurses_LIBS}
+ $(ncurses_LIBS)
$(GETTEXT) \
-I../../libs/parser
nconf_LDADD = ../../libs/parser/libkconfigparser.la \
- ${ncurses_extra_LIBS} ${ncurses_LIBS}
+ $(ncurses_extra_LIBS) $(ncurses_LIBS)