mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
multiprotocol updates. SILC prints channel and private messages now
using the same message formats as IRC. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@699 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
965def294b
commit
2b8580c8a7
46 changed files with 667 additions and 687 deletions
|
|
@ -19,35 +19,36 @@ perl-signals.h: $(top_srcdir)/docs/signals.txt $(srcdir)/get-signals.pl
|
|||
EXTRA_DIST = \
|
||||
libperl_dynaloader.la \
|
||||
get-signals.pl \
|
||||
xs/Irssi-bans.xs \
|
||||
xs/Irssi-channel.xs \
|
||||
xs/Irssi-core.xs \
|
||||
xs/Irssi-dcc.xs \
|
||||
xs/Irssi-flood.xs \
|
||||
xs/Irssi-ignore.xs \
|
||||
xs/Irssi-log.xs \
|
||||
xs/Irssi-masks.xs \
|
||||
xs/Irssi-modes.xs \
|
||||
xs/Irssi-netsplit.xs \
|
||||
xs/Irssi-notifylist.xs \
|
||||
xs/Irssi-query.xs \
|
||||
xs/Irssi-rawlog.xs \
|
||||
xs/Irssi-server.xs \
|
||||
xs/Irssi-settings.xs \
|
||||
xs/Irssi-window.xs \
|
||||
xs/Irssi.xs \
|
||||
xs/Irssi.pm \
|
||||
xs/Makefile.PL.in \
|
||||
xs/typemap
|
||||
core/Irssi-bans.xs \
|
||||
core/Irssi-channel.xs \
|
||||
core/Irssi-core.xs \
|
||||
core/Irssi-dcc.xs \
|
||||
core/Irssi-flood.xs \
|
||||
core/Irssi-ignore.xs \
|
||||
core/Irssi-log.xs \
|
||||
core/Irssi-masks.xs \
|
||||
core/Irssi-modes.xs \
|
||||
core/Irssi-netsplit.xs \
|
||||
core/Irssi-notifylist.xs \
|
||||
core/Irssi-query.xs \
|
||||
core/Irssi-rawlog.xs \
|
||||
core/Irssi-server.xs \
|
||||
core/Irssi-settings.xs \
|
||||
core/Irssi-window.xs \
|
||||
core/Irssi.xs \
|
||||
core/Irssi.pm \
|
||||
core/Makefile.PL.in \
|
||||
core/typemap
|
||||
|
||||
noinst_HEADERS = \
|
||||
module.h \
|
||||
xs/module.h
|
||||
core/module.h \
|
||||
irc/module.h
|
||||
|
||||
all-local:
|
||||
cd xs && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR); fi; fi && $(MAKE) && cd ..
|
||||
for dir in core irc; do cd $$dir && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR); fi; fi && $(MAKE) && cd ..; done
|
||||
|
||||
install-exec-local:
|
||||
cd xs && make install && cd ..
|
||||
for dir in core irc; do cd $$dir && make install && cd ..; done
|
||||
|
||||
libirssi_perl_la_LIBADD = $(PERL_LDFLAGS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue