From 285f52d53a5b7f08c9929098dd2d8461c724f0bd Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 23 Jul 2013 19:34:03 -0400 Subject: [PATCH] Fix automake warning about deprecated INCLUDES Warning was: src/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') --- src/Makefile.am | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 1983fe8..705e9ba 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,12 +1,16 @@ # This file is processed by GNU automake to generate Makefile.in -INCLUDES = -I$(top_srcdir)/pixmaps - bin_PROGRAMS = wmnotify + wmnotify_SOURCES = wmnotify.c wmnotify.h options.c options.h configfile.c configfile.h \ xevents.c xevents.h dockapp.c dockapp.h sound.c sound.h \ network.c network.h pop3.c pop3.h imap.c imap.h ssl.c ssl.h common.h +wmnotify_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/pixmaps \ + $(AM_CPPFLAGS) + CLEANFILES = *~ MAINTAINERCLEANFILES = Makefile.in -- 2.20.1