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 /shell | |
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 'shell')
-rw-r--r-- | shell/Makefile.am | 2 | ||||
-rw-r--r-- | shell/importer/Makefile.am | 2 | ||||
-rw-r--r-- | shell/test/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/shell/Makefile.am b/shell/Makefile.am index 0edf5f87a3..4f89e2fd31 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -2,7 +2,7 @@ if ENABLE_TEST_COMPONENT SUBDIRS = . test endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/widgets \ -I$(top_srcdir)/widgets/misc \ -I$(top_srcdir) \ diff --git a/shell/importer/Makefile.am b/shell/importer/Makefile.am index 1aa5d5b484..06735179af 100644 --- a/shell/importer/Makefile.am +++ b/shell/importer/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/shell \ -I$(top_builddir)/shell \ diff --git a/shell/test/Makefile.am b/shell/test/Makefile.am index 74bd509958..8a2efd8a4a 100644 --- a/shell/test/Makefile.am +++ b/shell/test/Makefile.am @@ -1,6 +1,6 @@ component_LTLIBRARIES = libevolution-test.la -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir)/shell \ -I$(top_srcdir)/widgets/misc \ -I$(top_builddir)/shell \ |