From: Stef Walter Date: Fri, 21 Jun 2013 10:51:54 +0000 (+0200) Subject: Use AM_CPPFLAGS instead of INCLUDES X-Git-Tag: 0.18~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46fa0810637a63e51c2b2be6ae85783abca12b07;p=platform%2Fupstream%2Flibsecret.git Use AM_CPPFLAGS instead of INCLUDES automake 1.13 deprecates the latter --- diff --git a/egg/Makefile.am b/egg/Makefile.am index 84fc104..9b8e2fa 100644 --- a/egg/Makefile.am +++ b/egg/Makefile.am @@ -5,7 +5,7 @@ noinst_LTLIBRARIES = \ EXTRA_DIST = egg-testing.h -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/build \ -DWITH_VALGRIND diff --git a/egg/tests/Makefile.am b/egg/tests/Makefile.am index 88b9e51..856659f 100644 --- a/egg/tests/Makefile.am +++ b/egg/tests/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/Makefile.decl -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir) \ -I$(top_srcdir) \ -DSRCDIR="\"@abs_srcdir@\"" \ diff --git a/libsecret/Makefile.am b/libsecret/Makefile.am index fe5db67..04ef1db 100644 --- a/libsecret/Makefile.am +++ b/libsecret/Makefile.am @@ -2,7 +2,7 @@ include $(top_srcdir)/Makefile.decl SUBDIRS = . tests -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -DSECRET_COMPILATION \ $(NULL) diff --git a/libsecret/tests/Makefile.am b/libsecret/tests/Makefile.am index dde03fa..7f75206 100644 --- a/libsecret/tests/Makefile.am +++ b/libsecret/tests/Makefile.am @@ -4,7 +4,7 @@ include $(top_srcdir)/Makefile.decl # and I'm not sure how we can add that dependency. .NOTPARALLEL: -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/libsecret \ -DSRCDIR="\"@abs_srcdir@\"" \ diff --git a/tool/Makefile.am b/tool/Makefile.am index f41e0f6..667c88c 100644 --- a/tool/Makefile.am +++ b/tool/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/Makefile.decl -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/libsecret \ -DSECRET_COMPILATION \