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 /addressbook/gui | |
parent | 0169e6a289a1836ca54541797e2d6c9cad2ada3d (diff) | |
download | gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.gz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.bz2 gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.lz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.xz gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.tar.zst gsoc2013-evolution-42e75c9162402078ac629740821c3533925ee342.zip |
Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/Makefile.am | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/Makefile.am | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/Makefile.am | 2 | ||||
-rw-r--r-- | addressbook/gui/merging/Makefile.am | 2 | ||||
-rw-r--r-- | addressbook/gui/widgets/Makefile.am | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/gui/component/Makefile.am b/addressbook/gui/component/Makefile.am index 3a0732a995..6e43acd60c 100644 --- a/addressbook/gui/component/Makefile.am +++ b/addressbook/gui/component/Makefile.am @@ -2,7 +2,7 @@ if OS_WIN32 WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-mail-shared.la endif -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"evolution-addressbook\" \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ diff --git a/addressbook/gui/contact-editor/Makefile.am b/addressbook/gui/contact-editor/Makefile.am index 53ed96fdee..36ba4c90a8 100644 --- a/addressbook/gui/contact-editor/Makefile.am +++ b/addressbook/gui/contact-editor/Makefile.am @@ -2,7 +2,7 @@ if OS_WIN32 WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-addressbook.la endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ -I$(top_srcdir)/addressbook/ \ diff --git a/addressbook/gui/contact-list-editor/Makefile.am b/addressbook/gui/contact-list-editor/Makefile.am index 8e287f3f3a..81aa679c07 100644 --- a/addressbook/gui/contact-list-editor/Makefile.am +++ b/addressbook/gui/contact-list-editor/Makefile.am @@ -2,7 +2,7 @@ if OS_WIN32 WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-addressbook.la endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ -I$(top_srcdir)/addressbook/ \ diff --git a/addressbook/gui/merging/Makefile.am b/addressbook/gui/merging/Makefile.am index ebec465d16..fd13c9779e 100644 --- a/addressbook/gui/merging/Makefile.am +++ b/addressbook/gui/merging/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"eab-contact-merging\" \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -I$(top_srcdir) \ diff --git a/addressbook/gui/widgets/Makefile.am b/addressbook/gui/widgets/Makefile.am index ebdf49ef40..dd4bacf276 100644 --- a/addressbook/gui/widgets/Makefile.am +++ b/addressbook/gui/widgets/Makefile.am @@ -1,7 +1,7 @@ ruledir = $(privdatadir) rule_DATA = addresstypes.xml -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"eab-widgets\" \ -DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \ -DEVOLUTION_GALVIEWSDIR=\""$(viewsdir)"\" \ |