diff options
author | Timo Sirainen <cras@irssi.org> | 2000-09-30 22:49:48 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-09-30 22:49:48 +0000 |
commit | 2b8580c8a73ecdb2846b745c32b0ba51be4458e3 (patch) | |
tree | 04a68511ca0e66618883afb9e8ff83ca4425f972 /src/perl | |
parent | 965def294b3787052a9285ef22d6b01cd41a2ebe (diff) | |
download | irssi-2b8580c8a73ecdb2846b745c32b0ba51be4458e3.zip |
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
Diffstat (limited to 'src/perl')
-rw-r--r-- | src/perl/Makefile.am | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am index 4022876d..8ef5ddf0 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -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) |