mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
b37af47023
Set defines via CPPFLAGS variable not via CFLAGS one. Use AM_CPPFLAGS and AM_CFLAGS variables instead of per-target ones. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
14 lines
197 B
Makefile
14 lines
197 B
Makefile
|
|
noinst_LTLIBRARIES = libmcconfig.la
|
|
|
|
libmcconfig_la_SOURCES = \
|
|
common.c \
|
|
get.c \
|
|
set.c \
|
|
paths.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS)
|