1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

s/INCLUDES/AM_CPPFLAGS/g

Silences warnings on recent automake such as:

src/core/Makefile.am:3: warning: 'INCLUDES' is the old name for
'AM_CPPFLAGS' (or '*_CPPFLAGS')
This commit is contained in:
Dave Reisner 2014-06-21 11:37:28 -04:00
parent 13ea2cb622
commit f0925de16b
14 changed files with 14 additions and 14 deletions

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libcore.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
$(GLIB_CFLAGS) \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libfe_common_core.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
$(GLIB_CFLAGS) \
-DHELPDIR=\""$(datadir)/irssi/help"\" \

View File

@ -2,7 +2,7 @@ SUBDIRS = dcc notifylist
noinst_LIBRARIES = libfe_common_irc.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libfe_irc_dcc.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libfe_irc_notifylist.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
bin_PROGRAMS = botti
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
bin_PROGRAMS = irssi
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/fe-common/core/ \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libirc_core.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
-DSYSCONFDIR=\""$(sysconfdir)"\" \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libirc_dcc.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libirc_flood.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libirc_notifylist.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,7 +1,7 @@
moduledir = $(libdir)/irssi/modules
module_LTLIBRARIES = libirc_proxy.la
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core/ \
-I$(top_srcdir)/src/irc/core/ \

View File

@ -1,6 +1,6 @@
noinst_LIBRARIES = libirssi_config.a
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
$(GLIB_CFLAGS)

View File

@ -14,7 +14,7 @@ libfe_perl_la_LDFLAGS = -module -avoid-version -rpath $(moduledir)
perl-core.lo: irssi-core.pl.h
perl-signals.lo: perl-signals-list.h
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
-I$(top_srcdir)/src/fe-common/core \