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 /widgets | |
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 'widgets')
-rw-r--r-- | widgets/e-timezone-dialog/Makefile.am | 2 | ||||
-rw-r--r-- | widgets/menus/Makefile.am | 2 | ||||
-rw-r--r-- | widgets/misc/Makefile.am | 2 | ||||
-rw-r--r-- | widgets/table/Makefile.am | 2 | ||||
-rw-r--r-- | widgets/text/Makefile.am | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/widgets/e-timezone-dialog/Makefile.am b/widgets/e-timezone-dialog/Makefile.am index 64594fd889..cdc88e3b08 100644 --- a/widgets/e-timezone-dialog/Makefile.am +++ b/widgets/e-timezone-dialog/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ diff --git a/widgets/menus/Makefile.am b/widgets/menus/Makefile.am index 5d0c5ca989..f67a07370c 100644 --- a/widgets/menus/Makefile.am +++ b/widgets/menus/Makefile.am @@ -1,6 +1,6 @@ privsolib_LTLIBRARIES = libmenus.la -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ diff --git a/widgets/misc/Makefile.am b/widgets/misc/Makefile.am index e40664be05..303efa878b 100644 --- a/widgets/misc/Makefile.am +++ b/widgets/misc/Makefile.am @@ -2,7 +2,7 @@ if OS_WIN32 WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libfilter.la endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/a11y/widgets \ -I$(top_srcdir)/widgets \ diff --git a/widgets/table/Makefile.am b/widgets/table/Makefile.am index 0dbe1e6fe3..4ae0861027 100644 --- a/widgets/table/Makefile.am +++ b/widgets/table/Makefile.am @@ -8,7 +8,7 @@ glade_DATA = \ e-table-config.glade \ e-table-field-chooser.glade -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ $(E_WIDGETS_CFLAGS) \ diff --git a/widgets/text/Makefile.am b/widgets/text/Makefile.am index fbe03c828f..ad106158d9 100644 --- a/widgets/text/Makefile.am +++ b/widgets/text/Makefile.am @@ -2,7 +2,7 @@ if OS_WIN32 WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libemiscwidgets.la endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ $(E_UTIL_CFLAGS) \ |