Perl working again, better than ever (unless there's bugs :)

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@191 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-04-28 08:07:42 +00:00 committed by cras
commit a5a66264de
43 changed files with 1510 additions and 1004 deletions

View file

@ -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 ..