mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
it fallbacks to "module" again. If it is found, it tries to load several other modules too, like irc_module, fe_module and fe_irc_module. Split perl module to perl_core and fe_perl. Removed "_common" from some fe_common modules. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1228 dbcabf3a-b0e7-0310-adc4-f8d773084564
26 lines
No EOL
551 B
Makefile
26 lines
No EOL
551 B
Makefile
moduledir = $(libdir)/irssi/modules
|
|
module_LTLIBRARIES = libfe_irc_dcc.la
|
|
|
|
libfe_irc_dcc_la_LDFLAGS = -avoid-version
|
|
|
|
INCLUDES = \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/core/ \
|
|
-I$(top_srcdir)/src/irc/core/ \
|
|
-I$(top_srcdir)/src/irc/dcc/ \
|
|
-I$(top_srcdir)/src/fe-common/core/ \
|
|
-DHELPDIR=\""$(datadir)/irssi/help"\" \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\"
|
|
|
|
libfe_irc_dcc_la_SOURCES = \
|
|
fe-dcc.c \
|
|
fe-dcc-chat.c \
|
|
fe-dcc-get.c \
|
|
fe-dcc-send.c \
|
|
module-formats.c
|
|
|
|
noinst_HEADERS = \
|
|
module.h \
|
|
module-formats.h \
|
|
fe-dcc.h
|