diff options
Diffstat (limited to 'src/perl/Makefile.am')
-rw-r--r-- | src/perl/Makefile.am | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am index 4093d2ad..2e527e70 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -1,6 +1,6 @@ noinst_LTLIBRARIES = libperl.la -libperl_la_DEPENDENCIES = perl-signals.h +irssi-perl.c: perl-signals.h INCLUDES = $(GLIB_CFLAGS) \ -DPLUGINSDIR=\""$(libdir)/irssi/plugins"\" \ @@ -18,11 +18,31 @@ perl-signals.h: $(top_srcdir)/docs/signals.txt $(srcdir)/get-signals.pl EXTRA_DIST = \ 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 +noinst_HEADERS = \ + module.h \ + xs/module.h + all-local: cd xs && if [ ! -f Makefile ]; then $(perlpath) Makefile.PL; fi && $(MAKE) && cd .. |