mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
now be able to add whatever new DCC types. Nick changes affect DCC chats. /WHOIS without parameters works properly in DCC CHAT queries. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1194 dbcabf3a-b0e7-0310-adc4-f8d773084564
25 lines
450 B
Makefile
25 lines
450 B
Makefile
moduledir = $(libdir)/irssi/modules
|
|
module_LTLIBRARIES = libirc_dcc.la
|
|
|
|
libirc_dcc_la_LDFLAGS = -avoid-version
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) \
|
|
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/
|
|
|
|
libirc_dcc_la_SOURCES = \
|
|
dcc.c \
|
|
dcc-chat.c \
|
|
dcc-get.c \
|
|
dcc-send.c \
|
|
dcc-resume.c \
|
|
dcc-autoget.c
|
|
|
|
noinst_HEADERS = \
|
|
dcc-rec.h \
|
|
dcc-file-rec.h \
|
|
dcc.h \
|
|
dcc-file.h \
|
|
dcc-chat.h \
|
|
dcc-get.h \
|
|
dcc-send.h \
|
|
module.h
|