mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +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>
15 lines
251 B
Makefile
15 lines
251 B
Makefile
|
|
noinst_LTLIBRARIES = libmcevent.la
|
|
|
|
libmcevent_la_SOURCES = \
|
|
event.c \
|
|
internal.h \
|
|
manage.c \
|
|
raise.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-DDATADIR=\""$(pkgdatadir)/"\" \
|
|
-DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(PCRE_CFLAGS)
|