From: Mark Wooding Date: Sat, 1 Jun 2013 23:14:38 +0000 (+0100) Subject: vars.am: Use `AM_CPPFLAGS' for the includes list. X-Git-Tag: 2.2.1~15 X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/commitdiff_plain/4af1c336b984984e98bffc3c6d6c6bc540422228 vars.am: Use `AM_CPPFLAGS' for the includes list. This frees up plain `CPPFLAGS' for users. --- diff --git a/vars.am b/vars.am index 3c65370..2450f28 100644 --- a/vars.am +++ b/vars.am @@ -45,7 +45,7 @@ MAINTAINERCLEANFILES = $(PRECOMPS) ###-------------------------------------------------------------------------- ### Include path. -MLIB_INCLUDES = \ +MLIB_INCLUDES = \ -I$(top_srcdir)/buf \ -I$(top_srcdir)/codec \ -I$(top_srcdir)/hash \ @@ -58,7 +58,7 @@ MLIB_INCLUDES = \ -I$(top_srcdir)/ui \ -I$(top_srcdir)/utils -CPPFLAGS += $(MLIB_INCLUDES) +AM_CPPFLAGS = $(MLIB_INCLUDES) ###-------------------------------------------------------------------------- ### Miscellaneous useful definitions.