mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-05 19:14:27 +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>
17 lines
293 B
Makefile
17 lines
293 B
Makefile
noinst_LTLIBRARIES = libmcskin.la
|
|
|
|
libmcskin_la_SOURCES = \
|
|
colors.c \
|
|
colors-old.c \
|
|
common.c \
|
|
hc-skins.c \
|
|
ini-file.c \
|
|
lines.c \
|
|
internal.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DDATADIR=\""$(pkgdatadir)/"\" \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(PCRE_CFLAGS)
|