diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-11-25 04:22:45 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-11-25 04:22:45 +0000 |
commit | 0c01c6f1ad28cf6d489fa1a329f3d6f82926d5a1 (patch) | |
tree | 76d8b99ec8f4f5c928c2914a4979f1b88f44803c /Makefile.am | |
parent | ed1afd7772119734d60f526430a01d4ac14e435d (diff) |
Replace INCLUDES by AM_CPPFLAGS, other cleanups.
2007-11-24 Matthias Clasen <mclasen@redhat.com>
* */Makefile.am: Replace INCLUDES by AM_CPPFLAGS, other
cleanups.
svn path=/trunk/; revision=5932
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index e36285c6d..80a187566 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,8 +7,11 @@ SUBDIRS = . m4macros glib gobject gmodule gthread tests build po docs bin_SCRIPTS = glib-gettextize -INCLUDES = -DG_LOG_DOMAIN=g_log_domain_glib @GLIB_DEBUG_FLAGS@ \ - -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=g_log_domain_glib \ + @GLIB_DEBUG_FLAGS@ \ + -DG_DISABLE_DEPRECATED \ + -DGLIB_COMPILATION EXTRA_DIST += \ ChangeLog.pre-2-14 \ |