From: Hugo Villeneuve Date: Tue, 23 Jul 2013 23:34:03 +0000 (-0400) Subject: Fix automake warning about deprecated INCLUDES X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=abe2e423118d0a6839662c655091ed0d5afd6f34;p=dockapps%2Fdockbatmon.git Fix automake warning about deprecated INCLUDES Warning was: src/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') --- diff --git a/src/Makefile.am b/src/Makefile.am index 7ec3214..adab715 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,8 @@ # This file is processed by GNU automake to generate Makefile.in -INCLUDES = -I$(top_srcdir) \ - -I$(top_srcdir)/pixmaps \ - $(GTK_CFLAGS) +AM_CPPFLAGS = -I$(top_srcdir) \ + -I$(top_srcdir)/pixmaps \ + $(GTK_CFLAGS) bin_PROGRAMS = dockbatmon