diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-01 05:18:36 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-01 05:20:23 +0800 |
commit | 42e75c9162402078ac629740821c3533925ee342 (patch) | |
tree | ded7de519f1af08a9b80ebc4c4db8df9e99bf9ba /a11y | |
parent | 0169e6a289a1836ca54541797e2d6c9cad2ada3d (diff) | |
download | gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.gz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.zst gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.zip |
Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.
Diffstat (limited to 'a11y')
-rw-r--r-- | a11y/Makefile.am | 2 | ||||
-rw-r--r-- | a11y/addressbook/Makefile.am | 2 | ||||
-rw-r--r-- | a11y/calendar/Makefile.am | 2 | ||||
-rw-r--r-- | a11y/e-table/Makefile.am | 2 | ||||
-rw-r--r-- | a11y/e-text/Makefile.am | 2 | ||||
-rw-r--r-- | a11y/widgets/Makefile.am | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/a11y/Makefile.am b/a11y/Makefile.am index 0ccbe4390e..72cd2c72a9 100644 --- a/a11y/Makefile.am +++ b/a11y/Makefile.am @@ -13,7 +13,7 @@ endif privsolib_LTLIBRARIES = libevolution-a11y.la -INCLUDES = \ +AM_CPPFLAGS = \ $(A11Y_CFLAGS) libevolution_a11y_la_SOURCES = \ diff --git a/a11y/addressbook/Makefile.am b/a11y/addressbook/Makefile.am index 81092822f4..4d127601c3 100644 --- a/a11y/addressbook/Makefile.am +++ b/a11y/addressbook/Makefile.am @@ -6,7 +6,7 @@ endif privsolib_LTLIBRARIES = libevolution-addressbook-a11y.la -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"evolution-a11y\" \ -I$(top_srcdir) \ -I$(top_srcdir)/a11y \ diff --git a/a11y/calendar/Makefile.am b/a11y/calendar/Makefile.am index 1bd53787c9..4605cb0a63 100644 --- a/a11y/calendar/Makefile.am +++ b/a11y/calendar/Makefile.am @@ -11,7 +11,7 @@ endif privsolib_LTLIBRARIES = libevolution-calendar-a11y.la -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"evolution-a11y\" \ -I$(top_srcdir) \ -I$(top_srcdir)/calendar/gui \ diff --git a/a11y/e-table/Makefile.am b/a11y/e-table/Makefile.am index 413a37d97e..2a8d0cb072 100644 --- a/a11y/e-table/Makefile.am +++ b/a11y/e-table/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ $(E_UTIL_CFLAGS) \ diff --git a/a11y/e-text/Makefile.am b/a11y/e-text/Makefile.am index 069284a617..726b15157c 100644 --- a/a11y/e-text/Makefile.am +++ b/a11y/e-text/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ $(GNOME_PLATFORM_CFLAGS) \ diff --git a/a11y/widgets/Makefile.am b/a11y/widgets/Makefile.am index e822094500..663159c7b2 100644 --- a/a11y/widgets/Makefile.am +++ b/a11y/widgets/Makefile.am @@ -8,7 +8,7 @@ endif privsolib_LTLIBRARIES = libevolution-widgets-a11y.la -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"evolution-a11y\" \ -I$(top_srcdir) \ -I$(top_srcdir)/a11y \ |