mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-07 03:52:00 +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
278 B
Makefile
14 lines
278 B
Makefile
noinst_LTLIBRARIES = libmcfilehighlight.la
|
|
|
|
libmcfilehighlight_la_SOURCES = \
|
|
common.c \
|
|
get-color.c \
|
|
ini-file-read.c \
|
|
internal.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DDATADIR=\""$(pkgdatadir)/"\" \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(PCRE_CFLAGS)
|