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')
29 lines
511 B
Makefile
29 lines
511 B
Makefile
moduledir = $(libdir)/irssi/modules
|
|
module_LTLIBRARIES = libirc_proxy.la
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/core/ \
|
|
-I$(top_srcdir)/src/irc/core/ \
|
|
$(GLIB_CFLAGS)
|
|
|
|
libirc_proxy.a:
|
|
rm -f libirc_proxy.a
|
|
$(LN_S) .libs/libirc_proxy.a libirc_proxy.a
|
|
|
|
libirc_proxy_la_LDFLAGS = -module -avoid-version
|
|
|
|
libirc_proxy_la_DEPENDENCIES = libirc_proxy.a
|
|
|
|
libirc_proxy_la_SOURCES = \
|
|
proxy.c \
|
|
dump.c \
|
|
listen.c
|
|
|
|
noinst_HEADERS = \
|
|
module.h \
|
|
proxy.h
|
|
|
|
clean-generic:
|
|
rm -f libirc_proxy.a
|