forked from PsychoticNinja/irssi
Silences warnings on recent automake such as: src/core/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
17 lines
269 B
Makefile
17 lines
269 B
Makefile
noinst_LIBRARIES = libirssi_config.a
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
$(GLIB_CFLAGS)
|
|
|
|
libirssi_config_a_SOURCES = \
|
|
get.c \
|
|
set.c \
|
|
parse.c \
|
|
write.c
|
|
|
|
pkginc_lib_configdir=$(pkgincludedir)/src/lib-config
|
|
pkginc_lib_config_HEADERS = \
|
|
iconfig.h \
|
|
module.h
|